|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4736 ] | Global Response |
|---|---|
| Organisation name | Global Response |
| Short name or acronym | Global Response |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Language or Speech Technology |
| Address | 777 S State Road 7 |
| Postal Code | 33068 |
| City | Margate |
| Country | United States |
| Phone | +1 (954) 973-7300 |
| Fax | + |
| globalresponselocal_(on)_gmail.com | |
| Organisation URL | http://www.globalresponse.com/ |
| Logo | Description |
![]() |
Global Response is a leading provider of outsourced customer contact solutions and call center services for multichannel retailers, direct response advertisers, healthcare and insurance providers, government and higher education. We specialize in top-quality customer care, inbound sales, order-processing, technical support, customer relationship management, chat support and email response. Top brands turn to Global Response to deliver a superior customer service experience at various customer touchpoints. Inbound calls, chat, and email are handled with the highest levels of care and professionalism by our well-trained teams of U.S.-based agents. |
| Contact | |
| Name | Marketing Specialist Joe S |
| Function | Markteter |
| Department | Marketing |
| globalresponselocal_(on)_gmail.com | |
| Phone | + |
| Fax | + United States |
|
|
Last update: 2015-02-23 19:01:01 #!/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" |