|  [ ID = 3551 ]  | Pitman Training  | 
| Organisation name | Pitman Training London (High Holborn)  | 
| Short name or acronym | Pitman Training  | 
| Organisation type | Private company  | 
| Activity type | Language or Speech Technology training  | 
| Address  | 303-306 High Holborn  | 
| Postal Code  | WC1V 7JZ  | 
| City  | London  | 
| Country  | United Kingdom  | 
| Phone  | +44 2070254700 | 
| Fax  | +44 2072424594 | 
| Email  | highholborn_(on)_pitman-training.net  | 
| Organisation URL  | http://www.holborntraining.co.uk  | 
| Logo | Description  | 
  | 
We provide PC based training in audio transcription and shorthand.
  | 
| 
  
 | Contact | 
| Name | Mr Keith Wymer  | 
| Function | CEO  | 
| Department |   | 
| Email | keithwymer_(on)_pitman-training.net  | 
| Phone | +44 2070254700 | 
| Fax | +44 2072424594 | 
 
 
Update this profile
 | 
Last update: 2005-06-30 14:32:18
#!/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"
 |