|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3123 ] | PRAF Microcomputer Technologies Ltd. |
---|---|
Organisation name | PRAF Microcomputer Technologies Ltd. |
Short name or acronym | PRAF Microcomputer Technologies Ltd. |
Organisation type | Private comany |
Activity type | |
Address | P.O.Box 7209 |
Postal Code | 58171 |
City | Holon |
Country | Israel |
Phone | + +972-3-5031045 |
Fax | + |
info_(on)_praftec.com | |
Organisation URL | http://www.praftec.com |
Logo | Description |
![]() |
PRAF Microcomputer Technologies is a company focused on development, manufacturing and marketing of computerized automation and control systems, equipment for enterprise and home telephony. R&D and engineering services are provided for the local companies involved in the electronic and computer industries. |
Contact | |
Name | Mr. Alon Masal |
Function | Sales & Marketing |
Department | Sales & Marketing |
info_(on)_praftec.com | |
Phone | + +972-3-5031045 |
Fax | + |
![]() |
Last update: 2003-01-17 22:07:34 #!/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" |