|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1756 ] | Marcelino ELOSUA |
---|---|
Name | ELOSUA, Marcelino |
Job Title | Editor |
Organisation | LID Editorial Empresarial |
Address | Calle Musgo 5 |
Postal Code | 28023 |
City | Madrid |
Country | Spain |
Phone | + +34 91 372 9003 |
Fax | + +34 91 372 8514 |
Mobile | + |
info_(on)_lideditorial.com [@ replaced for spam protection] | |
Organisation URL | http://www.lideditorial.com |
Personal URL | |
Membership | |
Languages | English Spanish |
Specialism | In the past 20 years, LID has developed a database containing 32,000 terms in 19 languages with definitions in 12 languages in the following areas:
- Business - Economy - Finance - Technology - Telecommunications - Internet - Construction - Architecture - Real Estate - Marketing - Advertising - Franchising - Logistics - Transport |
Photograph | Description or CV |
Update your profile | Last update: 2004-07-20 15:02:36 #!/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" |