| [ ID = 4746 ] | PGBS |
| Organisation name | Proglobalbusinesssolutions |
| Short name or acronym | PGBS |
| Organisation type | Private company |
| Activity type | Other Call Center related expertise |
| Address | 12th Main, J.P Nagar, 5th phase, |
| Postal Code | 560078 |
| City | Bangalore |
| Country | India |
| Phone | +91 7406666928 |
| Fax | + |
| Email | proglobalbusinesssolutions_(on)_gmail.com |
| Organisation URL | http://www.proglobalbusinesssolutions.com/ |
| Logo | Description |
 |
Proglobalbusinesssolutions is a service oriented marketing Indian company. We
provide diverse outsourcing or off shoring solutions under one platform.
We provide Domestic & International services in the following:
*Call Center Services
*Data Entry Services
*Graphic Designing Services
*E -publishing Services
*Photo Editing Services
Advantages of Outsourcing to us are :-
*Excellent communication
*Swift Response
*Precise solutions
*24/7×365 days customer service
*State-of-the-art technology and Infrastructure
*100% Information Security and Data confidentiality
*Dedicated team per project
*Robust Quality Assurance
*One Platform for various business outsourcing requirement
*Multilingual support apart from English
*Skilled Resources with Domain expertise
*Affordable competitive pricing.
Our team of professionals with expertise in multiple domains in India & across
globe provides quality support in multiple languages apart from English. We
provide support in 30 plus international languages.
|
|
| Contact |
| Name | Emily Watson |
| Function | BDM |
| Department | Sales |
| Email | emilywatson02014_(on)_gmail.com |
| Phone | + |
| Fax | + |
Update this profile
|
Last update: 2015-03-25 09:59:15
#!/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"
|