I have the following piece of code:
'<a href="'.$phpbb_root_path.
"viewforum.php?f=$line['forum_id']&o=$fid" . '">' . $line_topic_title . "</a>"
The end of the URL it produces looks like the following:
viewforum.php?f=756&o%20=%2017
How do I get rid of those spaces after the 'o' and '='?
'<a href="'.$phpbb_root_path.
"viewforum.php?f=$line['forum_id']&o=$fid" . '">' . $line_topic_title . "</a>"
The end of the URL it produces looks like the following:
viewforum.php?f=756&o%20=%2017
How do I get rid of those spaces after the 'o' and '='?