|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4369 ] | Telephone Answerring Service UK |
---|---|
Organisation name | Answer My Phone |
Short name or acronym | Telephone Answerring Service UK |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 1st Floor 10, Merthyr Road |
Postal Code | CF14 1DG |
City | Cardiff |
Country | United Kingdom |
Phone | +08000 612 845 |
Fax | + |
info_(on)_answermyphone.biz | |
Organisation URL | http://www.answermyphone.biz/ |
Logo | Description |
![]() |
AnswerMyPhone.biz is a UK-based telephone answering service in Cardiff, South Wales. More than just a phone answer service, we also offer message taking services, virtual receptionist services, telesales and media response. We can be your inbound call centre and customer contact centre all in one. |
Contact | |
Name | Delyth |
Function | |
Department | |
info_(on)_answermyphone.biz | |
Phone | + |
Fax | + |
![]() |
Last update: 2011-01-11 14:14:59 #!/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" |