[ ID = 3661 ] | PC Phone |
Organisation name | WebPhone VoIP Phone |
Short name or acronym | PC Phone |
Organisation type | Private company |
Activity type | Language or Speech Technology service provider |
Address | Rua Da Alfandega, No. 13 Funchal |
Postal Code | 08724 |
City | Madeira |
Country | Portugal |
Phone | +800 3922-2377 |
Fax | + |
Email | webphonecs_(on)_gmail.com |
Organisation URL | http://www.webphone.com |
Logo | Description |
 |
WebPhone is a PC to Phone service that uses Voice Over Internet Protocol (VoIP) technology and software to place calls over the Internet. VoIP technology is less expensive than traditional phone service so the savings are passed on to you. With great low rates, WebPhone is a smart alternative to traditional phone service for long distance and international calling -- you can save hundreds of dollars on your phone bills. Use WebPhone wherever and whenever your computer is connected to the Internet. WebPhone offers two options: WebPhone and WebPhone Plus.
|
| Contact |
Name | Product Manager Peter Rose |
Function | |
Department | |
Email | webphonecs_(on)_gmail.com |
Phone | +800 3922-2377 |
Fax | + |
Update this profile
|
Last update: 2006-04-22 16:36:54
#!/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"
|