Organisation profile: 1-800-WeAnswer
[ ID = 3535 ] | 1-800-WeAnswer |
Organisation name | 1-800-WeAnswer |
Short name or acronym | 1-800-WeAnswer |
Organisation type | Other |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | 545 Eighth Avenue, Suite 401 |
Postal Code | 10018 |
City | New York |
Country | United States |
Phone | + 800-932-6793 |
Fax | + |
Email | info_(on)_weanswer.com |
Organisation URL | http://www.weanswer.com |
Logo | Description |
 |
We provide professional and courteous responses to customers and prospects on behalf of our clients. This includes phone answering, voice mail and call center operations. Our expertise is providing personalized service for a wide variety of companies and clients.
|
| Contact |
Name | VP Marketing Robert Porter |
Function | Sales And Marketing |
Department | Marketing |
Email | rob_(on)_weanswer.com |
Phone | + 800-932-6793 |
Fax | + |
Update this profile
|
Last update: 2005-05-17 20:39:26
#!/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"
|
|