|
|
Organisation profile: Wasla Contact Center
[ ID = 3907 ] | Wasla |
Organisation name | Wasla Contact Center |
Short name or acronym | Wasla |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | Mostafa El Nahas St. Extension, 26A EL-Sheikh Mohamed Metwaly EL-Shaarawy St.-10th quarter |
Postal Code | 11371 |
City | Cairo |
Country | Egypt |
Phone | +2 0106231727 |
Fax | + |
Email | info_(on)_wasla.com |
Organisation URL | http://www.wasla.com |
Logo | Description |
|
Wasla Contact Center has been established in 2003, Our main line of business is
providing Outsourced Contact Center Service in Egypt, Regionally and Globally.
Wasla Contact Center has been meeting the Offshore Outsourcing needs and we
are committed to permanently outperforming ourselves by using best-in industry
practices and platforms.
Wasla offers a variety of value added BPO services to our clients to assist
them in attracting customers (Tele-Marketing), acquiring customers (Tele-Sales)
and maintaining customers satisfaction (Tele-Support & Customer Care).
|
| Contact |
Name | Mr. Mohamed Hashaad |
Function | International Sales Specialist |
Department | Sales |
Email | mohamed.hashaad_(on)_wasla.com |
Phone | +2 0106231727 |
Fax | + |
Update this profile
|
Last update: 2008-09-07 16:31:39
#!/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"
|
|