|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3622 ] | C3 |
|---|---|
| Organisation name | C-3 (PVT) LTD |
| Short name or acronym | C3 |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 1910-13 A, Saima Trade Towers, I.I.Chundrigar Road |
| Postal Code | 74000 |
| City | Karachi |
| Country | Pakistan |
| Phone | +92 21-2272158/61 |
| Fax | +92 21-2272166 |
| masood_(on)_c-3ltd.com | |
| Organisation URL | http://www.c-3ltd.com |
| Logo | Description |
![]() |
C-3 (PVT) LTD is a call-contact centre witha capacity of 42 seats and all English speaking CSRs and capable of handling all BPO services in association with its sister software house Scan Infotech (pvt) Ltd. |
| Contact | |
| Name | CEO Masood Alam |
| Function | |
| Department | |
| masood_(on)_c-3ltd.com | |
| Phone | +92 21-2272158 |
| Fax | +92 21-2272166 |
|
|
Last update: 2005-12-03 09:26:26 #!/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" |