Ans: you need three things to make this work.The PHP parser (CGI or server module), a web server. You need to run the web server,with a connected PHP installation.
Monthly archive for May 2010
Q What are the main areas in which PHP script is used ?
Ans:There are three mainareas in which PHP is used-
(i)Server side side scripting
(ii)Command line Scripting
(iii)Writing Desktop Applications
Q What distinguishes PHP from something like client side Java Script ?
Ans: Java script applied on client side while in php code executed on server reviews side.
Q .In PHP how can you jump in to and out of “php mode”?
Ans: The Php code is enclosed in special Start < ? and end ? > tags that allow ingredients you to jump in to and out of “php mode”.
What does a special set of tags = and ?> do in PHP?
The tags <?= and ?> displayed output directly to the web browser.
