|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4621 ] | MGS |
---|---|
Organisation name | MarVen Global BPO Services Pvt Ltd |
Short name or acronym | MGS |
Organisation type | Private company |
Activity type | Other Call Center related expertise |
Address | 119 Pai Layout |
Postal Code | 560016 |
City | Bangalore |
Country | India |
Phone | +91 7760881753 |
Fax | + |
devan_(on)_db2globaltech.com | |
Organisation URL | http://www.db2globaltech.com |
Logo | Description |
![]() |
We manage a team of Qualified Professionals with Years of Experience in International customer service, Data processing, Systems development/maintenance and Value added support. Key Benefits to our Clients Generate savings through operational efficiency. Increase Revenue and Expand Clients Market reach. Build a Stronger Brand by providing a Professional approach in Telemarketing and Excellent Customer Service Enable Clients to Focus on their core business Our organization specializes in Various Areas of Customer Interfacing Activities that are served with excellence by our professional call center representatives . Customer Service Inbound Customer Services OutBound Lead Generations OutBound Sales Campaigns Customer Services Follow-up Sales & Receivable Management TechnicalSupport Fulfillment Mortgage & Title Resources |
Contact | |
Name | Mr Benedict Francis |
Function | COO |
Department | Operations |
contact_(on)_db2globaltech.com | |
Phone | +91 7760881753 |
Fax | + |
![]() |
Last update: 2013-11-27 18:09:26 #!/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" |