| [ ID = 4859 ] | PS Hr Services |
| Organisation name | Profession Star Hr Services and Recruitment |
| Short name or acronym | PS Hr Services |
| Organisation type | Private company |
| Activity type | Other Call Center related expertise |
| Address | 690 S Highway 89, Suite 200, Box 14672, Jackson, WY 83002 |
| Postal Code | 83002 |
| City | Jackson |
| Country | United States |
| Phone | +1 8772131703 |
| Fax | + |
| Email | recruitment_(on)_professionstar.com |
| Organisation URL | http://www.professionstar.com |
| Logo | Description |
 |
We are a premium human force or a manpower consultancy based in Wyoming,
California and New York that provides a quick and accurate service to Call
Centers in United States in the domain of staffing who can speak various
languages as per the need of the department
|
|
| Contact |
| Name | Business Development Head Shawn Davis |
| Function | Business Development |
| Department | |
| Email | recruitment_(on)_professionstar.com |
| Phone | +1 8772131703 |
| Fax | + |
Update this profile
|
Last update: 2017-01-25 21:32:56
#!/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"
|