Introduction to PHP 11/13
Creating a Variable
Practice makes perfect! Let's get started by creating a variable and giving it a value.
<!DOCTYPE html>
<html>
<head>
<link type='text/css' rel='stylesheet' href='style.css'/>
<title>PHP FTW!</title>
</head>
<body>
<?php
$myName="FeEvo";
?>
<p>
</p>
</body>
</html>
CSS code be ignored
Comments
Post a Comment