|
|
|
Expert profile: Mr. Jawad Khan
| [ ID = 2450 ] |
Mr. Jawad Khan |
| Name |
Khan, Mr. Jawad |
| Job Title | Mannaging Director |
| Organisation |
Utilis BPO |
| Address | |
| Postal Code | 54000 |
| City | Lahore |
| Country | Pakistan |
| Phone | +1 845-704-1900 |
| Fax | + |
| Mobile | + |
| Email |
jawad_(on)_utilisbpo.com
[@ replaced for spam protection] |
| Organisation URL |
http://www.utilisbpo.com |
| Personal URL |
|
| Membership |
|
| Languages | English Urdu, Hindi |
| Specialism |
24/7 support
Call Center Management
Consulting for Services Sales and Marketing
Customer Care
Customer Care Process
Customer Satisfaction in the Call Center
Cutting Edge Customer Service
e-Business
e-Support
Hosting solutions
Marketing
Software in E Commerce
Telemarketing
Transcription
User Interface Design
Web Applications |
| Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2013-06-24 22:38:17
#!/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"
|
|