ScoobyDood
Programmer
Thus far I've only been able to get my IF statements to recognize numbers:
if($input==1)
{
print "Some stuff"
}
else
{
print "Some other stuff"
}
But what if I want it to recognize words?
if($input==WORDS)
{
print "Some stuff"
}
else
{
print "Some other stuff"
}
It just prints "Some stuff" no matter what I do. What's the problem? Computers - Can't live with 'em, can't live without 'em! Check this out:
if($input==1)
{
print "Some stuff"
}
else
{
print "Some other stuff"
}
But what if I want it to recognize words?
if($input==WORDS)
{
print "Some stuff"
}
else
{
print "Some other stuff"
}
It just prints "Some stuff" no matter what I do. What's the problem? Computers - Can't live with 'em, can't live without 'em! Check this out: