I have a question about the step below
Originally Posted by KeithMcL
includes/functions_online.php
Find all instances of:
[php]<a href=\"showthread.php?$session[sessionurl]t=$threadid\" title=\"$threadpreview\">$threadtitle</a>[/php]And replace with:
[php]<a href=\"t$threadid-" .mod_rewrite_title($threadtitle). ".html\" title=\"$threadpreview\">$threadtitle</a>[/php]
In my includes/functions_online.php I have
<a href=\"showthread.php?$session[sessionurl]t=$threadid\" title=\"$threadpreview\">$threadtitle</a>
but the above shows
<a href="showthread.php?$session[sessionurl]t=$threadid\" title=\"$threadpreview\">$threadtitle</a>
what do I do? it appears that when you use the code tags here to show code it takes out the a href=
\ and makes it a href=
Am I correct with this as it states in one of the above posts (post #2)
If your code has backslashes ( \ ), you need to keep them in the code.
Help pls