|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0209 ] | Philips Nederland BV/ Business Communications |
---|---|
Organisation name | Philips Nederland BV/ Business Communications |
Short name or acronym | Philips Nederland BV/ Business Communications |
Organisation type | Company |
Activity type | Call centers |
Address | A. Philipsweg 1 |
Postal Code | 1223 KZ |
City | Hilversum |
Country | Netherlands |
Phone | + +31 35 6893145 |
Fax | + +31 35 6891173 |
info.sopho_(on)_philips.com | |
Organisation URL | http://www.sopho.nl |
Logo | Description |
![]() |
Phillips Business Communications is een toonaangevende leverancier van producten en totaaloplossingen op het gebied van bedrijfstelecommunicatie. Philips Business Communications (PBC) levert een uitgebalanceerde reeks van systemen en applicaties voor spraak, data en multimedia onder de merknaam SOPHO. In Nederland maken meer dan een miljoen mensen dagelijks gebruik van SOPHO-systemen. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2003-11-28 09:33:22 #!/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" |