PHP > What is PHP?
Server-side means that the script is run by the server where the web page is fetched from. In general, users find that PHP is easier to use than CGI... Mostly because
you can upload PHP driven pages to a website, and the scripts will work
straight away without needing to CHMOD the script to make it executable. Mixing HTML & PHP code on the same web page is a simple procedure, and most 'general' PHP pages are created using a mixture of PHP and HTML. example code: Today's date is <?php echo date("l
dS of F Y h:i:s A"); ?> We have written a short tutorial for PHP which you can view by clicking here
|