Hi!
I am trying to fix an issue in a program I've bought.
I see that the code says:
echo "<META NAME='description' CONTENT=".strip_tags(urldecode($row['description'])).">";
This outputs like:
<META NAME='description' CONTENT=the description goes here>
And as you see, it misses the " in the beginning and end of the description.
(Should be: <META NAME='description' CONTENT="the description goes here">
How do I ad these?