Page 1 of 1

No Back button on the Message Board

Posted: Sun Feb 08, 2009 6:10 am
by scottygt1983
Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:

Write your message below:
In the Guest Book there is a link that takes you back to your web page, but in the Message Board I can't seem to find one. Is there a way to add this link so someone can just click "back to your site" instead of having to hit the back button several times?

Thanks,
Scott

Posted: Sun Feb 08, 2009 9:18 am
by Henrie
Hello Scott,

This requires modifying the mboard.php file

First open mboard.php in a suitable editor.
Find (lines 157-159 in mboard 1.3)

Code: Select all

<td>

<p><a href="#new"><b>New topic</b></a></p>
and change it to something like

Code: Select all

<td>
<?php echo '<p align="center"><a href="'.$settings['website_url'].'">Back to '.$settings['website_title'].'</a></p>'; ?>
<hr>
<p><a href="#new"><b>New topic</b></a></p>
If i am correct the $settings['website_url'] and $settings['website_title'] are already present in the settings.php file and can be set there.

Greetings,
Henrie

Posted: Mon Feb 09, 2009 2:14 am
by scottygt1983
Thanks Henrie,

The code worked perfect.