[ ID = 4666 ] | International Call Center |
Organisation name | Universe IT Ltd |
Short name or acronym | International Call Center |
Organisation type | Other |
Activity type | Other Call Center related expertise |
Address | house#12, road#3, khilkhet |
Postal Code | 1229 |
City | dhaka, Bangladesh |
Country | Canada |
Phone | +88 01913052295 |
Fax | + |
Email | yunus_(on)_universeitltd.com |
Organisation URL | http://www.universeitltd.com |
Logo | Description |
 |
CALL CENTER
We are very experienced in Call Center Industry for outbound sales, appointment
fixing, survey and Inbound customer services. We have world class calling
agents and Virtual Assistant. We are very proud for this sector. Our office is
24/7 and we are always looking for new company or customer to serve. Welcome to
Universe IT Ltd.
|
Member of elsnet
| Contact |
Name | Managing Director Yunus Hossain |
Function | Management |
Department | Management |
Email | yunus_(on)_universeitltd.com |
Phone | +880 1913052295 |
Fax | + Bangladesh |
Update this profile
|
Last update: 2014-07-23 00:46:45
#!/usr/bin/ksh
# cntr.cgi --
# version 0
DOC=$DOCUMENT_ROOT$DOCUMENT_URI
VSTART=28-08-2008
WRONGLOG=${DOCUMENT_ROOT}/cntr.txt
echo Content-type:text/html
echo
case $DOC in
*experts*) CDIR=${DOCUMENT_ROOT}/cntex ;;
*orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;;
*) WRONG=yes ;;
esac
CFILE=${DOC##*/}
case ${CFILE} in
[0-9][0-9][0-9][0-9].html) WRONG=no ;;
*) WRONG=yes ;;
esac
[ $WRONG = yes ] &&
{ echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG
exit
}
CCNT=${CDIR}/${CFILE%.html}.txt
CLCK=${CDIR}/${CFILE%.html}.lck
[ -s $CCNT ] && COUNT=$(head -1 $CCNT)
COUNT=$(( ${COUNT:-0} + 1 ))
[ -f $CLCK ] ||
{ touch $CLCK
echo $COUNT > $CCNT
rm -f $CLCK
}
echo " Visits since $VSTART: $COUNT"
|