Hi
Is it me? Consider something noddy like this in PHP
Lets test if a number falls between a particular range:
$weight = 15;
$a = 10;
$b = 20;
If ($weight > $a AND $weight < $b)
{
echo "Success"
}
In the editor, text after the "<" symbol goes red and the function does not work. From all I have read on this, it should work. If I change the "<" to a "=" or a ">" it loses the red and appears to parse.
Does sellerdeck have an issue with using the "<" in PHP and if so why and what is the workaround.
Any ideas ?
Is it me? Consider something noddy like this in PHP
Lets test if a number falls between a particular range:
$weight = 15;
$a = 10;
$b = 20;
If ($weight > $a AND $weight < $b)
{
echo "Success"
}
In the editor, text after the "<" symbol goes red and the function does not work. From all I have read on this, it should work. If I change the "<" to a "=" or a ">" it loses the red and appears to parse.
Does sellerdeck have an issue with using the "<" in PHP and if so why and what is the workaround.
Any ideas ?
Comment