|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3590 ] | GIPL |
---|---|
Organisation name | Gandhi InfoTech Pvt Ltd |
Short name or acronym | GIPL |
Organisation type | Private company |
Activity type | Call center without specific expertise in Language or Speech Technology |
Address | GIPL, Deepika Square, 37th Milestone, N.H-8 |
Postal Code | |
City | Gurgaon |
Country | India |
Phone | +91 9811688460 |
Fax | + |
vijay_(on)_gandhiinfotech.com | |
Organisation URL | http://www.gandhiinfotech.com |
Logo | Description |
We are a full service Call Center Located in Gurgaon and New Delhi, India; expanding to other parts of the world. As a part of our strong business model and professional networks we have business relationships with major clients in the Telecommunications, Mortgage, Insurance, Banking sectors throughout the United Kingdom and America. We have direct experienced both B2C and B2B segment of the Call center Market. Our 24 by 7 service center and multiple level response areas are customized for individual outsourcing needs. If you are interested in a progressive, results oriented service agency, please contact us for a custom review and proposal customized for your operations. Initial information will include but not limited to your business philosophy, types of projects and basic volumes. | |
Contact | |
Name | Mr. Vijay Gandhi |
Function | Director |
Department | Business Development |
vijay_(on)_gandhiinfotech.com | |
Phone | +91 9811688460 |
Fax | + |
Update this profile | Last update: 2005-09-25 06:18:04 #!/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" |