I just began learning php. I\'ve installed php5 on linux and wrote very simple code just to get going.
php5
How can I run scripts? I tried using the
Shorter way for command line:
php -r 'echo "Hello "; echo "Jay";' OR php -r 'echo dirname("parent/child/reply") . "\n";'
php -r 'echo "Hello "; echo "Jay";'
php -r 'echo dirname("parent/child/reply") . "\n";'