our approach
|
new tutorials
|
contact us
PHP Basics In Pictures
Basics
Variables
Numbers
User functions
Logic & Loops
Files
Format text output
In the text editor, create a new script with this code:
<html>
<head>
<title>HTML and PHP together</title>
</head>
<body>
<h1 align=center>
<?php
print "Welcome to ACME AUTO";
?>
</h1>
</body>
</html>
<< BACK
NEXT >>