Wednesday, April 25, 2012

Php Introduction 1

started from zero we learn PHP. i want to share what i know and what i learn too that i am previously newbie too.
What is PHP
PHP = Hypertext Preprocessor . PHP is open source and free to install and use. PHP used to web server that so single website can online and usually PHP makes Web dynamic.

For try and learn you will need install PHP 5 and mysql for database
some developer provides one package like :



Today Action is we says "Hello world :)"


after install appserv or xampp

create new php files
and write
<?php

echo "hello world :)";

?>


To start php always write
<?php
and ending with
?>

you can write php at html where ever you wants
eg :
<?php
echo "hello too ";
?>
<table>
<tr>
<td>
<?php
echo "hello";
?>

</td>
</tr>
</table>


continue to next tutorial

No comments:

Post a Comment