PHP If Loop
Posted by admin on 19 December, 2010
No comments yet
This item was filled under [ PHP & MySql, References ]
The If Loop is a very basic loop and used often. It’s used to check a condition and execute a code based on whether the condition was true or not. if( … condition … ) { … execute code … }else{ … execute other code … } The condition is put between brackets and the [...]