Need to know how to create an "if" statement using Php to display db fields. Please send me your Skype id via pm or google talk id. Thanks
It's very easy, read the tutorial here http://www.freewebmasterhelp.com/tutorials/phpmysql/4 If you don't know how to use the 'if' condition, then I suggest you start reading here http://www.tizag.com/phpT/
here is an example : $my_name = "someguy"; if ( $my_name == "someguy" ) { echo "Your name is someguy!<br />"; } echo "Welcome to my homepage!"; ---------------------------------------------------- Display: Your name is someguy! Welcome to my homepage!