Organisation profile: FilWeb Asia Inc.
[ ID = 4761 ] | FAI |
Organisation name | FilWeb Asia Inc. |
Short name or acronym | FAI |
Organisation type | Private company |
Activity type | Call center with specific expertise in Language or Speech Technology |
Address | Maharlika Drive, USPS |
Postal Code | 4023 |
City | City of San Pedro, Laguna |
Country | Philippines |
Phone | + |
Fax | + |
Email | info_(on)_filwebasia.com |
Organisation URL | http://www.filwebasia.com |
Logo | Description |
 |
FilWeb Asia is a global provider of prime business and knowledge process outsourcing solutions. Headquartered in Laguna, Philippines, we specialize on back office solutions, designs for various media platforms, and many other offshore outsourcing services that are solidly built on high-grade performance. All these reflect our signature of quality, reliability, and connectivity.
Capitalizing on the Filipinos world-class competitiveness, diligence, and passion for excellence, we serve a broad spectrum of clientele of start-ups, small and medium scale businesses, and multinational corporations from every point of the globe. Our commitment to valuing your resources is evident in our delivery of excellent services, which are cost effective in terms of pricing and perfectly tailored to your needs.
|
| Contact |
Name | Ms. Priscilla Lumaquez |
Function | Business Development Officer |
Department | Marketing |
Email | priscilla_(on)_filwebasia.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2015-06-30 08:07:57
#!/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"
|
|