Article, Training
No Comments PHP for beginners – Part 4
Hi ………….
Loops
loops in php are same as in the C language
if….Else loop
if(condition)
{
}
else{
Article, Training
No Comments Hi ………….
Loops
loops in php are same as in the C language
if….Else loop
if(condition)
{
}
else{
Article, Training
No Comments Welcome again…..
comment
Very essential part of any project is comment and documentation . In order to understand the code for a next person , you must comment your program. Prefer a code done by a famous programmer , you can see well comment programming format
// comment here Read more »
Article, Technology, Training
3 Comments PHP for beginners – Part 2
All php script tags starts with <?php and ends with ?>
<?php
code………….
?>
no space in between <? and php
for single line print command <?= ?> can be used
for single line <? ?> can be used
Any way try to use <?php ?> Read more »
Article, Technology, Training
No Comments PHP
Why PHP ?
free and opensource , anyone can run the server , simple syntax (almost similar to C ), lot of built-in functionality Read more »