|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4925 ] | eTatvaSoft |
---|---|
Organisation name | eTatvaSoft |
Short name or acronym | eTatvaSoft |
Organisation type | Private company |
Activity type | Language or Speech Technology consultant |
Address | 2nd Floor, TatvaSoft House, Rajpath Club Road, Near Shivalik Business Center, Opp. Golf Academy, Off S G Road, |
Postal Code | 380054 |
City | Ahmedabad, Gujarat |
Country | India |
Phone | +91 997-427-8220 |
Fax | + |
info_(on)_etatvasoft.com | |
Organisation URL | https://www.etatvasoft.com |
Logo | Description |
![]() |
eTatvaSoft is a web, ecommerce and mobile app development company that specializes in offering best in class IT solutions. With a primary goal to render high-end web development services, our team of dynamic experts intend to work for various verticals and industries. We offer but are not limited to : -> Web development - PHP web application, PHP website development and maintenance, nodejs -> Mobile app development using iOS, android, hybrid, ionic, react native app platforms -> Use PHP frameworks such as Laravel, Symfony, Zend, Yii, CakePHP -> Front end development using Angular JS, Backbone JS, JQuery, reactjs -> e-Commerce development - Magento, WooCommerce, Shopify OXID, osCommerce Content Management System (CMS) like WordPress, Drupal, Joomla Key highlights of eTatvaSoft : -> Create elegant solutions that work for everyone -> Provide a unique combination of human-centered design and agile software development -> Highest standards of sincerity, hard work, and dedication -> Cutting edge solutions in the volatile business environment |
Contact | |
Name | Mr. Rakesh Patel |
Function | Business Research |
Department | Marketing |
rakesh.patel_(on)_etatvasoft.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2017-10-26 10:06: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" |