21
May
0
PHP Basics – E01
In this video screencast, the PHP delimiters, single-line comments, and phpinfo are explained. This is my first screencast, and I forgot to actually show what phpinfo outputs, but I’m including a screenshot with this post.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PHPInfo</title>
</head>
<body>
<?php
phpinfo(); // This will inform you about your PHP installation.
?>
</body>
</html>
For more PHP screencast You can go to Zack’s website at http://zackhovatter.com/
Enjoyed reading this post?
Subscribe to the RSS feed and have all new posts delivered straight to you.
Subscribe to the RSS feed and have all new posts delivered straight to you.
Post your comment
