Want to Learn PHP ????

agroup

New Member
Messages
190
Reaction score
0
Points
0
hello
hope you will b fine
i want to learn php
If any body teach me PHP
In Hindi / Urdu / English
 

xPlozion

New Member
Messages
868
Reaction score
1
Points
0
that and the php manual will be a great resource as you learn php. once you get the basic concept of programming, then the rest will come kinda naturally.

PHP:
$variables = 'are set this way';
$var = "they can be set this way too";
echo "$var"; // would output the contents of that variable, but
echo '$var'; // would output $var and not it's contents
echo $var; // is the proper way of outputting variables.
// this is a comment
# this is also one
/* as
well
as
this */
$x = 10; // numbers don't need to be in quotes or apostrophes.
if ($x == 10) { // == means equal to.  there's also ===
echo "do this"; //every line that isn't a conditional if, else, which, etc... needs to have a semicolon
} else {
echo 'this shouldn\'t happen'; // have to escape ( \ ) the apostrophe or the string would end there.
}
there's much more, but that's all i'm gonna get into now.
 
Last edited:

agroup

New Member
Messages
190
Reaction score
0
Points
0
if any website is providing the php tutorials in urdu
than plz tell me
i think i can learn best in urdu
 

agroup

New Member
Messages
190
Reaction score
0
Points
0
Urdu is used in Pakistan , India
In Pakisan it is National Language
 
Top