Hi,
Why does this through me an parse error at the if statement?:
$string = explode('=', $extention[$i]);
$sstring = $string[0];
if (strlen($sstring) = 1)
{
$kewords = explode('+', $string[1]);
$keys = $string[1];
echo $keys;
}
What am I missing (besides the obvious drinks...)