How to Add A Message or Image in the Join Form
This tutorial shows you how to add a message or graphic in the join_form.php page.
Instructions
You can add HTML via a PHP echo statement in the join_form.php page.
On or about line 419 is this script block:
// ----------------------------------------------------------
echo "<div id=\"first_column\">";
echo "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td align=center class=text2>";
echo "<div align=justify>$page_text</div>";
break;
default:
echo "<div id=\"first_column\">";
echo "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td align=center class=text2>";
//-----------------------------------------------------------
By isolating this line:
echo "<div id=\"first_column\">";
Near the end, you can your HTML text, like this:
echo "<div id=\"first_column\">FREE tutorials, tips, tricks and resources at echo "<div id=\"first_column\">FREE tutorials, tips, tricks and resources at BoonexNerd.com!<br><br>";
This will show the message " FREE tutorials, tips, tricks and resources at BoonexNerd.com!" just above the form area.
If you wanted a picture just above the text you could do something like this:
echo "<div id=\"first_column\"><img src='yourimagelocation.jpg'><br>FREE tutorials, tips, tricks and resources at echo "<div id=\"first_column\">FREE tutorials, tips, tricks and resources at BoonexNerd.com!<br><br>";
Just remember as long as you wrap you html in a PHP echo statement or variable, it will work.
Download(s)
N/A
Addendum
N/A

|