|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3311 ] | DialResults |
---|---|
Organisation name | DialResults, Inc. |
Short name or acronym | DialResults |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | 3850 E Baseline Rd Suite 126 |
Postal Code | 85206 |
City | Mesa |
Country | United States |
Phone | + 888-839-3613 |
Fax | + |
Sales_(on)_dialresults.com | |
Organisation URL | http://www.dialresults.com |
Logo | Description |
![]() |
DialResults creates a call center solution for all your Contact Center requirements. We offer our solution in either a hosted or premise solution through a fully featured system that works through the internet! Call Recording, Reports, Live Stats, List and Contact Management, all the tools you need to be effective in the call center industry are at your fingertips! The DialResults C3 Hosted Call Center Application is an excellent solution to save money and increase productivity. Imagine a solution that eliminates costly up-front purchases and utilizes a flexible VOIP platform to allow your agents to work from home, the office, wherever! Save money on your office space, utilities, and payroll all while getting a more productive employee! Hosted Dialer, IP PBX, T1, E1, DS3 and VOIP solutions. |
Contact | |
Name | Sales Manager Travis Sibley |
Function | Sales |
Department | Call Center and Dialer Technology |
sales_(on)_dialresults.com | |
Phone | + 888-839-3613 |
Fax | + |
![]() |
Last update: 2008-08-19 17:35:20 #!/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" |