PHP Programming Book
PHP Programming Book Version Release Date:
- 1997-06-01
- 1998-06-01
- 1998-12-01
- 2004-06-01
- 2009-12-01
- 2011-06-01
- 2015-06-01
About Book:
This is an unofficial free book for educational purpose and is not affiliated with JavaScript group and company.
Free programming Books:
This is an unofficial free book for educational purpose and is not affiliated with JavaScript group and company.
Free programming Books:
Please feel free to share this PDF with anyone for free.'
Introduction:
PHP can be used to add content to HTML files. While HTML is processed directly by a web browser, PHP scripts are executed by a web server and the resulting HTML is sent to the browser.
The following HTML markup contains a PHP statement that will add Hello World! to the output:
<!DOCTYPE html>
<html>
<head>
<title>PHP!</title>
</head>
<body>
<p><?php echo "Hello world!"; ?></p>
</body>
</html>
No comments:
Post a Comment
Please do not share any spam link in the comment box.