elsnet |
Organisation profile: Kievnov International |
[ ID = 3686 ] | Kievnov |
---|---|
Organisation name | Kievnov International |
Short name or acronym | Kievnov |
Organisation type | Other |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | 10 - 16 Tiller Road |
Postal Code | E14 8PX |
City | London |
Country | United Kingdom |
Phone | +44 7856301326 |
Fax | +44 2073455069 |
kevin_(on)_kievnov.com | |
Organisation URL | http://www.kievnov.com |
Logo | Description |
We offer call center / contact centre servces . We have state of the art technology and natural english and french callers . Our services are : Telesales Customer Service Data Entry Document Conversion Survey Data Cleansing Claim processing Billing & Coding Data Conversion Website Design and hosting Lead generation Software Development Our rate are exceptional and no one can match us . To have a quote and get started call us now onto 07856301326 or mail me onto kevin@kievnov.com | |
Contact | |
Name | Dr Kevin Ramdhun |
Function | President |
Department | Corporate |
kevin_(on)_kievnov.com | |
Phone | +44 7856301326 |
Fax | +44 2073455069 |
Update this profile | Last update: 2006-07-06 13:19:16 #!/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" |