|
|
Organisation profile: Fullbrook Consulting
[ ID = 4079 ] | Fullbrook |
Organisation name | Fullbrook Consulting |
Short name or acronym | Fullbrook |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | Gothic House, Barker Gate, The Lace Market |
Postal Code | NG1 1JU |
City | Nottingham |
Country | United Kingdom |
Phone | +44 1159933366 |
Fax | + |
Email | lauren.b_(on)_fullbrookconsulting.com |
Organisation URL | http://www.fullbrookconsulting.com |
Logo | Description |
|
International Headhunters and recruitment consultants for Contact Centre Technology manufacturers, Systems Integrators and Service Providers. We're able to find you the best staff across EMEA, filling vacancies from CEO to Senior Sales and Project Management roles.
|
| Contact |
Name | Mr Wayne Kay |
Function | MD |
Department | |
Email | wayne.kay_(on)_fullbrookconsulting.com |
Phone | +44 1159933366 |
Fax | + |
Update this profile
|
Last update: 2009-04-24 00:31:17
#!/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"
|
|