|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3077 ] | MRT ResPonse |
---|---|
Organisation name | Matrix Response Technologies, Ltd. |
Short name or acronym | MRT ResPonse |
Organisation type | 1 Private company |
Activity type | 10 Other |
Address | Benleaze House, East Harptree |
Postal Code | BS40 6AJ |
City | Bristol, Avon |
Country | United Kingdom |
Phone | + +44 1761 241 761 |
Fax | + +44 1761 241 788 |
mkt_(on)_mrtresponse.com | |
Organisation URL | http://www.mrtresponse.com |
Logo | Description |
![]() |
MRT provides fully scalable document printing, mailing and fulfillment solutions to a wide range of business sectors. MRT NetPrint is a web based, resource for companies wishing to manage their document printing, mailings and resources more cost efficiently. Users access this fully scalable resource at any time and pay only for what they use. Available in digital full colour and black & white with full personalisation. MRT NetPrint clients include companies like: Experian, Chiswell Associates, Greenpeace, Invesco Perpetual, The Impact Programme, Hargreaves Lansdown, London Borough of Hackney, Target Express |
Contact | |
Name | Mr Richard Chalmers |
Function | Director |
Department | |
mkt_(on)_mrtresponse.com | |
Phone | + +44 1761 241 761 |
Fax | + |
![]() |
Last update: 2004-05-21 16:14:30 #!/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" |