|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3280 ] | GLOBAL BILGI |
|---|---|
| Organisation name | GLOBAL BILGI A.S. |
| Short name or acronym | GLOBAL BILGI |
| Organisation type | Outsourcing Contact Center Company |
| Activity type | |
| Address | Halkali Cd. Dereboyu Sk. No:8 |
| Postal Code | 34660 |
| City | Istanbul |
| Country | Turkey |
| Phone | + +90 212 473 20 00 |
| Fax | + +90 212 473 20 50 |
| info_(on)_global-bilgi.com.tr | |
| Organisation URL | http://www.global-bilgi.com.tr |
| Logo | Description |
|
|
Established in 1999, with more than USD 26,000,000 investment. Turkey's largest Call Center and owned by Turkcell (leader GSM operator of Turkey). Processed more than 41,000,000 calls in 2002 with a duration of 81,000,000 min. Located at 3 sites in Turkey. Have more than 2,350 employees and 1,520 seats by Nov 2003. ISO 2000 assured. |
| Contact | |
| Name | Director Basak Tekin |
| Function | Strategic Planning |
| Department | Strategic Planning & Business Development |
| basak.tekin_(on)_global-bilgi.com.tr | |
| Phone | + +90 212 473 20 97 |
| Fax | + +90 212 473 20 50 |
|
|
Last update: 2003-12-29 16:48:45 #!/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" |