elsnet |
Organisation profile: Global Tech Fz LLC. |
[ ID = 3377 ] | Global Tech |
---|---|
Organisation name | Global Tech Fz LLC. |
Short name or acronym | Global Tech |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | Building 11, Dubai Internet City |
Postal Code | 500349 |
City | Dubai |
Country | United Arab Emirates |
Phone | + +971 50 798 4672 |
Fax | + +971 4 390 8646 |
akshay_(on)_globaltechme.com | |
Organisation URL | http://www.globaltechme.com |
Logo | Description |
Based in Dubai, UAE. Global Tech is the regions leading outsourced Contact center service provider in the Middle East. Global Tech provides state of art customized customer relationship management solutions tailored to most industry verticals. Equipped with latest multimedia technologies, Global Tech contact center manages a vast array of inbound and outbound contact services through telephones, Fax, sms, email, and web enabled communication 24 hours a day, seven days a week. With multi language capabilities. | |
Contact | |
Name | Manage - Business Development Akshay Lal |
Function | International Business Development |
Department | Business Development |
akshay_(on)_globaltechme.com | |
Phone | + +971 50 798 4672 |
Fax | + +971 4 390 8646 |
Update this profile | Last update: 2004-07-20 15:24:03 #!/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" |