|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0090 ] | DSC |
---|---|
Organisation name | Database Systems Corp. |
Short name or acronym | DSC |
Organisation type | Company |
Activity type | Call centers |
Address | 1118 East Missouri Avenue |
Postal Code | 85014 |
City | Phoenix, AZ |
Country | United States |
Phone | + +1 602 265 5968 |
Fax | + +1 602 264 6724 |
sales_(on)_databasesystemscorp.com | |
Organisation URL | http://www.databasesystemscorp.com |
Logo | Description |
Provides call center technology. Products include call center phone systems with predictive dialer, interactive voice response, automatic call distribution, telemarketing applications, and telephony software and services. Database provides IVR and Voice Broadcasting services and complete turnkey systems and solutions. | |
Contact | |
Name | Mr. Jerry Pizet |
Function | Director |
Department | Marketing and Sales |
sales_(on)_databasesystemscorp.com | |
Phone | + (602) 265 5968 |
Fax | + (602) 264 6724 |
Update this profile | Last update: 2003-02-17 03:04:43 #!/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" |