hehe
Cant believe im asking this..... I send a variable through to another page .. to test it do I..?
if ($variable = 'text')
{}
or
if ($variable = "text")
{}
or
if ($variable = text)
{}
or am i wrong on all three?
thanx
| SitePoint Sponsor |




hehe
Cant believe im asking this..... I send a variable through to another page .. to test it do I..?
if ($variable = 'text')
{}
or
if ($variable = "text")
{}
or
if ($variable = text)
{}
or am i wrong on all three?
thanx





Hi,
It is:
if($variable == "test")
{}
Bookmarks