IF Statement In PHP
<html> <head> <title>IF statements in PHP.</title> </head> <body> <?php $name = "Rose"; if ( $name == "Rose" ) echo "Your name is Rose!<br />"; else echo "Welcome to my homepage!"; ?> </body> </html>
Output:
If the Given input is Rose,the output will be
Your name is Rose!
Else
Welcome to my homepage!
1 Comment to IF Statement In PHP
Wow this is a great resource.. I’m enjoying it.. good article






August 23, 2010