Saturday, July 24, 2010

ZEND TEST BOOK

http://www.boysj.com/the-zend-php-certification-practice-test-book

ZEND BLOG

http://shiflett.org/blog/2005/apr/zend-certification-self-test

PHP Scripting in Command line

1. How can I execute a PHP script using command line?
Ans : “php filename” or “php -f filename” will run a php file in command line.

Zend Exam Practice Book

google Grid


Freebase Gridworks 1.0 Overview from David Huynh on Vimeo.

Word Wrap in php

$text "A very long woooooooooooord.";$newtext wordwrap($text8"\n"true);

echo 
"$newtext\n";?>