|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4517 ] | Answer One |
---|---|
Organisation name | Answer One |
Short name or acronym | Answer One |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 2216 Young Drive |
Postal Code | 40505 |
City | Lexington |
Country | United States |
Phone | + 888-837-3482 |
Fax | + |
Organisation URL | http://answerone.biz/ |
Logo | Description |
![]() |
24-hour live professional telephone answering service with offices in Lexington, KY and Nashville, TN. We provide appointment setting, order entry, backup support, interactive operators, and remote receptionist service to medical practices, service companies, educational and private organizations. |
Contact | |
Name | President Phil Bryant |
Function | |
Department | |
Phil.Bryant_(on)_answerone.biz | |
Phone | + |
Fax | + |
![]() |
Last update: 2012-10-26 23:32:02 #!/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" |