$items = 5;
echo "you have $itemss items";
in a similar situation for me, that prints
"you have items"
where as something like this even
$items = 5;
echo "12k5j;12lk5j2050298$items)sjf0laskdfj;kj";
will find the variable $items and show it just fine.
why doesn't it work when i put an 's' at the end? is this a parser bug on the last letter or what?