Organisation profile: GOLD IT Interactive
[ ID = 4534 ] | GOLD IT |
Organisation name | GOLD IT Interactive |
Short name or acronym | GOLD IT |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 103 Carnegie Center, Suite 300 |
Postal Code | 08540 |
City | Princeton |
Country | United States |
Phone | +1 888-276-4120 |
Fax | + |
Email | sales_(on)_gold-it.net |
Organisation URL | http://www.gold-it.net |
Logo | Description |
 |
Gold IT is an outstanding and highly reputed offshore IT company. Gold IT is a leading provider of offshore/outsource call center, call center services, telecom billing solutions and technical help desk support services. Gold IT ensures better quality services for their client.
|
| Contact |
Name | Offshore Call Center Outsourcing Services Pat symcox |
Function | |
Department | Outsourcing |
Email | gold.it12_(on)_gmail.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2012-12-17 08:29:14
#!/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"
|
|