|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3062 ] | H2U |
---|---|
Organisation name | HEADS2YOU |
Short name or acronym | H2U |
Organisation type | Recruiters |
Activity type | |
Address | Suite 11/4 B1,Versova View, 4 Bungalow,Andheri(W) |
Postal Code | 400053 |
City | Mumbai |
Country | India |
Phone | + 91.22.6350381 |
Fax | + 91.22.6351557 |
heads2you_(on)_vsnl.net | |
Organisation URL | http://www.heads2you.net |
Logo | Description |
![]() |
We are Mumbai based Recruiters of I.T.,Telecom,Finance, Health Care,Media & Entertainment,Marine professionals for our Clients in India,Middle East,Asia Pacific,Europe & USA. |
Contact | |
Name | President Pradeep Pradhan |
Function | Management |
Department | Admin. |
heads2you_(on)_vsnl.net | |
Phone | + 91.22.6350381 |
Fax | + 91.22.6351557 |
![]() |
Last update: 2002-05-15 18:01:38 #!/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" |