|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3373 ] | connect2inc |
|---|---|
| Organisation name | Connect2, Inc. |
| Short name or acronym | connect2inc |
| Organisation type | Private company |
| Activity type | Call center without specific expertise in Lang+Speech Technology |
| Address | 26th Street Cor. 3rd Avenue Crescent Parkwest |
| Postal Code | 1634 |
| City | Bonifacio Global City, Taguig |
| Country | Philippines |
| Phone | + +63 2 8117400 |
| Fax | + +63 2 8117409 |
| sales_(on)_connect2inc.com | |
| Organisation URL | http://connect2inc.com |
| Logo | Description |
![]() |
Connect2inc is a philippines call center that offers outsourced customer service solutions through email, voice, and live chat. Connect2inc provides a seamless outsourced customer support and world class customer care that gives customer satisfaction. |
| Contact | |
| Name | Ms. Precious Bernabe |
| Function | SEO Specialist |
| Department | IT |
| pbernabe_(on)_connect2inc.com | |
| Phone | + +63 2 8117400 |
| Fax | + +63 2 8117409 |
|
|
Last update: 2004-06-24 09:40:42 #!/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" |