to klaun :
klaun is
learning:
|
PHP Started on: November 10, 2011, 8:21 am |
RCidDecember 14, 2011, 12:41 am - I'll teach you PHP. What level? Do you have any experience with it? |
erreDecember 31, 2011, 7:40 pm - I understand the logic of the if, foreach, while, for , etc. I just need to get familiar with PHP syntax |
RCidJanuary 3, 2012, 10:57 am - First of all you need to know where the documentation is: http://www.php.net It is full of examples and correct syntax. Since you are starting I'll guide you trough the very basics |
RCidJanuary 3, 2012, 11:13 am - Every variable name starts with a '$' . For example $color , $name , etc. You would assign a variable like this: $color='red'; |
RCidFebruary 8, 2012, 8:24 pm - Please always always remember to add a semicolon at the end of the line when you are declaring a variable or calling a function . I would easily say that that one detail got me crazy in my first days of programming |
RCidFebruary 14, 2012, 8:57 pm - You also need to remember that what makes PHP powerful is its community. Before you even start coding something from scratch check if someone did something similar before |