|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0172 ] | Mr Matt Garrett |
---|---|
Name | Garrett, Mr Matt |
Job Title | Sales/Technical |
Organisation | Multi-Channel Systems |
Address | 2226 Arbor Crest Dr. |
Postal Code | 75007 |
City | Carrollton |
Country | United States |
Phone | + 1.888.769.9629 (U.S. only) |
Fax | + 1.972.306.6712 |
Mobile | + |
mgarrett_(on)_mcsmk8.com [@ replaced for spam protection] | |
Organisation URL | http://www.mcsmk8.com |
Personal URL | |
Membership | ELSNET |
Languages | English |
Specialism | Callcenter:
ACDs Call Center Call Center Automation Call Center Management Call Center Predictive Dialing Platforms Computer Telephony Integration CTI (selection and application design) IVRs (selection and menu design) Mark VIII Turn Key Predictive Dialer Marketing PC-based and LAN-based Signal Processing Telemarketing |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2004-12-08 18:04:13 #!/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" |