|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3306 ] | E3R |
---|---|
Organisation name | E3R |
Short name or acronym | E3R |
Organisation type | 1 Private company |
Activity type | 9 Call center without specific expertise in Lang+Speech |
Address | 3R E Solutions Inc. 40/102, C.R. Park,New Delhi - 110019 |
Postal Code | 110019 |
City | Delhi |
Country | India |
Phone | + 91+33-32085623 |
Fax | + |
Organisation URL | http://www.e3r.net |
Logo | Description |
![]() |
Our company 3R E-Solutions, a company based in USA having presence in Canada and India. Apart from operating own call centers, we provide end-to- end consultancy services to those companies who want to venture into call centers. Our model is widely acclaimed in the industry as we provide state -of - the - art Technology, International Connectivity, Hiring & Training of staff and most importantly Campaigns to run these call centers. |
Contact | |
Name | Channel Partner of Asia (South-Eastern) Debasish Mukherjee |
Function | |
Department | Marketing |
gts_debasish_(on)_hotmail.com | |
Phone | + 91+33+32085623 |
Fax | + |
![]() |
Last update: 2004-04-04 15:26:05 #!/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" |