|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3127 ] | DSC |
---|---|
Organisation name | Database Systems Corp. |
Short name or acronym | DSC |
Organisation type | Computer Telephony Software and Systems Developer |
Activity type | |
Address | 1118 E. Missouri |
Postal Code | 85014 |
City | Phoenix |
Country | United States |
Phone | + (602) 265 5968 |
Fax | + (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, and call recording. Supplier of CRM software including telemarketing applications with telephony software and services. All products operate on a local area network or over the web. |
Contact | |
Name | Mr. Jerry Pizet |
Function | Director |
Department | Marketing and Sales |
jpizet_(on)_databasesystemscorp.com | |
Phone | + (602) 265 5968 |
Fax | + (602) 264 6724 |
![]() |
Last update: 2003-02-16 00:22:58 #!/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" |