elsnet |
Organisation profile: Telephone Consultancy and Training Company, The |
[ ID = 0397 ] | Telephone Consultancy and Training Company, The |
---|---|
Organisation name | Telephone Consultancy and Training Company, The |
Short name or acronym | Telephone Consultancy and Training Company, The |
Organisation type | Company |
Activity type | Call centers |
Address | TCT House, 6/7 Leapale Road |
Postal Code | GU1 4JX |
City | Guildford, Surrey |
Country | United Kingdom |
Phone | + +44 1483 888 288 |
Fax | + +44 1483 888 678 |
info_(on)_tctc.co.uk | |
Organisation URL | http://www.tctc.co.uk/main.html |
Logo | Description |
![]() |
TCTC provides telebusiness solutions for companies involved in both business to business and business to consumer markets. The company has worked with, and assisted, many of the world's leading companies in improving sales, service and profits through the effective design and execution of domestic and international telebusiness projects. The company provides a range of services (recruitment, training, consultancy, workshops, equipment, Call Centre Intelligence) and products supported by a high degree of customer care. |
Contact | |
Name | Mr. Matthew Van Slyke |
Function | |
Department | |
mvanslyke_(on)_telesight.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |