|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4600 ] | C1 |
---|---|
Organisation name | CyberOne.Ph, Inc. |
Short name or acronym | C1 |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 14th Floor World Center 197 Senator Gil Puyat Avenue |
Postal Code | 1200 |
City | Makati |
Country | Philippines |
Phone | +63 23105787 |
Fax | + |
sales_(on)_cyberone.ph | |
Organisation URL | http://www.cyberone.ph |
Logo | Description |
![]() |
Contact Centre and Business Process Outsourcing provider serving the global market with quality Inbound and Outbound Call Center Service, Back Office Solutions as well as Seat Leasing Service. Boost customer relations by providing them with reliable, round-the-clock support while reducing your operational costs at the same time. |
Contact | |
Name | Mr. Benjamin Juson |
Function | Business Development Manager |
Department | Marketing Department |
sales_(on)_cyberone.ph | |
Phone | +63 23105787 |
Fax | + |
![]() |
Last update: 2013-09-27 12:46:29 #!/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" |