[ ID = 4503 ] | iCG |
Organisation name | i Call Global |
Short name or acronym | iCG |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | Level 16 Tycoon Tower , Pearl Drive , Ortigas |
Postal Code | 1600 |
City | Pasig City , Metro Manila |
Country | Philippines |
Phone | +63 02-625-2170 |
Fax | +63 02-625-2170 |
Email | sales_(on)_icallglobal.com |
Organisation URL | http://www.icallglobal.com |
Logo | Description |
 |
iCallGlobal is a unique multi-channel digital contact center, enabling our
clients to compete efficiently and globally in an array of industries.
Our focus on managing the total customer experience enables our clients to
deliver exceptional customer interactions that dramatically improve
satisfaction levels, whilst reducing the cost of delivery and increases sales.
|
| Contact |
Name | Contact Center Manager/ Sales Manager Gavin Skewes |
Function | Contact center Soloutions |
Department | Operations |
Email | gavin_(on)_icallglobal.com |
Phone | +63 9173854428 |
Fax | +63 9173854428 |
Update this profile
|
Last update: 2012-09-10 16:29:58
#!/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"
|