Here I am writing php code using drop down menu to select basic math operations. It is good for beginners in PHP Programming. If you like it or have some questions about it please leave a comment thanks!
Learn PHP With Easy Tutorials
Learn Php Through Easy Tutorials is guide for beginners who want to learn php and understanding PHP programming with easy steps.
Thursday, March 22, 2012
Tuesday, January 17, 2012
How to Write First Php Script?
Write Your First Php Script:
Open your php editor like Macromedia Dreamweaver or other you can also use windows default program notepad to write php script.
<?php
echo 'This is my first script';
?>
Description of Code Elements:
<?php
every php code start with it
echo
it use to show your text in php code you can also use print instead of echo both are same.
'This is my first script';
this is your text in php code it with in single quotes and at the of echo or print statement use semi column.
?>
it is close sign of php code
Open your php editor like Macromedia Dreamweaver or other you can also use windows default program notepad to write php script.
<?php
echo 'This is my first script';
?>
Description of Code Elements:
<?php
every php code start with it
echo
it use to show your text in php code you can also use print instead of echo both are same.
'This is my first script';
this is your text in php code it with in single quotes and at the of echo or print statement use semi column.
?>
it is close sign of php code
Subscribe to:
Posts (Atom)