|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3526 ] | Comdata |
---|---|
Organisation name | Comdata SpA |
Short name or acronym | Comdata |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | Via Bisceglie 76 |
Postal Code | 20152 |
City | Milan |
Country | Italy |
Phone | +39 24149931 |
Fax | +39 241549559 |
info_(on)_comdata.it | |
Organisation URL | http://www.comdata.it |
Logo | Description |
![]() |
Italy based leader in Business Process Outsourcing and Document Management services, CRM and administrative operations. With more than 10 Italian farms located in the country, Comdata gives multinational and domestic Firms the concrete help to let themselves focused upon core business, demanding us the day-by-day operations. Our case histories in Telco, Finance, CPG, Utilities, Energy, Government, CHT and Transportation are available to show you how much we defend our Clients' competitive advantages. |
Contact | |
Name | Dr. Giuseppe Di Dio |
Function | Senior Manager |
Department | Sales Department |
g.didio_(on)_comdata.it | |
Phone | + |
Fax | + |
![]() |
Last update: 2005-04-29 14:12:04 #!/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" |