What does the following do?
Posted: Mon Jan 10, 2011 11:22 am
When used like in the example what does a "If" do?
Code: Select all
if($name)
{
// write here what to do;
}A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
if($name)
{
// write here what to do;
}