|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2951 ] | MagicPhone, A Tellme Company |
---|---|
Organisation name | MagicPhone, A Tellme Company |
Short name or acronym | MagicPhone, A Tellme Company |
Organisation type | Company |
Activity type | Voice activated phone solutions |
Address | 65 rue de Stalle |
Postal Code | 1180 |
City | Brussels |
Country | Belgium |
Phone | + + 32 2 334 23 11 |
Fax | + + 32 2 334 23 26 |
info.europe_(on)_tellme.com | |
Organisation URL | http://www.magicphone.com |
Logo | Description |
![]() |
Tellme Networks is revolutionizing how people and businesses use the telephone by fundamentally improving the caller experience with Internet and voice technologies. Tellme enables businesses to delight and empower their callers while slashing costs and complexity. Tellme's pioneering Voice Application network powers 1-800-555-TELL, the leading consumer voice portal. Tellme headquarters are in Mountain View, CA and its European subsidiary, Brussels, Belgium. |
Contact | |
Name | Mrs Rozenn Péran |
Function | Communications Manager |
Department | Marketing |
r.peran_(on)_tellme.com | |
Phone | + + 32 2 334 23 26 |
Fax | + + 32 2 334 23 00 |
![]() |
Last update: 2002-04-18 15:22:44 #!/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" |