|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3497 ] | BB |
---|---|
Organisation name | Business Beanstalk Telemarketing and Appointment Setting |
Short name or acronym | BB |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 955 Black Mountain Rd |
Postal Code | 94010 |
City | Hillsborough |
Country | United States |
Phone | + +18772704480 |
Fax | + |
Organisation URL | http://www.businessbeanstalk.com |
Logo | Description |
![]() |
Business Beanstalk specializes in providing contact center solutions for Small and Medium sized businesses. We offer inbound customer support and order taking, as well as outbound appointment setting, lead generation, telemarketing and telesales. We are confident that we can provide the full house call center support your company needs to increase your business. |
Contact | |
Name | Mr Mike deGuzman |
Function | President |
Department | |
mangani_(on)_gmail.com | |
Phone | + +18772704480 |
Fax | + |
![]() |
Last update: 2005-03-02 17:27:12 #!/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" |