- Script Language
- it is used on a lot of web service
- it is easy to write
- Newest Version is 5.3.3
- But on School server, runnning PHP is 4.3.9
- PHP
- web server (if you want to run on web
<?php
echo"hello";
?>
<?php
print"hello";
?>
<?php
?>
- you must write code between this symbol
<?php
$title="welcome page!";
?>
<h1>
<?php
echo$title;
?>
</h1>
?>
- i will write more info if i can in the future....