hello all how can i get profession in logic while using php actual i know all basic functions of php but i am unable to implementions so please guide me the proper way to use php in real programming
if ($brandon_r) { //Code here will run if $brandon_r contains a value ie true } if (!$brandon_r) { //Code here will run if $brandon_r contains nothing or false } if (1 > 0) { //Code here will run if the value if the first argument is greater than the second } if (1 < 0) { //Code here will run if the value if the first argument is smaller than the second } Code (php): etc etc More info http://theopensourcery.com/phplogic.htm
Knowing the name of functions will not help you if you don't know the basics of programming and how developing is done. I suggest to you to read more php basic tutorials, and try to make some little script by yourself, such as making a form and a php script that shows the data posted in the form. <?php echo $_POST['fieldnameinthehtmlform']; ?> Then make more advenced script, like replacing one word with another in the submitted form data with str_replace(), Then go and use all the functions you learnt If you want, you can check my PHP Tutorials website Forms, str_replace ...