I am trying to do this for my website:
http://www.dynamicdrive.com/dynamicindex4/imagetooltip.htm
I have been working on this all day, and might be alittle closer, but just need some help.
So, my index.tpl file is the template and displays all the items.
It looks like this:
<!-- Begin_switch_logged_out -->
<tr>
<td width="10%">
</td>
<td width="80%" class="box">
<center>
<img src="images/select.gif"><FORM action="register.php" method="get">
<table width="100%" cellspacing="3" cellpadding="2" border="0">
<td width="16%" class="choice">
<img src="images/money.gif" border="0"><br />
$450 Check<br /><input type="radio" name="item" value="$450 Check">
</td>
</table>
</center>
</td>
<td width="10%">
</td>
</tr>
<tr>
<td colspan="3">
<br />
</td>
</tr>
<tr>
<td width="10%">
</td>
<td width="80%" class="box">
<center>
<img src="images/complete.gif">{REFERRAL_EMAIL}<br /><br />
Your E-Mail Address:
<input type="text" class="input" name="email" size="50"><br /><br />
<INPUT type=hidden value="{REFERRAL}" name=referral>
<input type="submit" class="input" value="Register"></form><br /><br />
</center>
</td>
<td width="10%">
</td>
</tr>
<!-- End_switch_logged_out -->
<!-- Begin_switch_logged_in -->
<tr>
<td width="10%">
</td>
<td width="80%" class="box">
<center>
<B>Welcome back to {SITE_TITLE}, {USERNAME}!<BR>
Below you can see your status for your free {PRODUCT}.</B>
</center>
</td>
<td width="10%">
</td>
</tr>
<tr>
<td colspan="3">
<br />
</td>
</tr>
<tr>
<td width="10%">
</td>
<td width="80%" class="box">
<center>
{USER_COMPLETED_OFFER}
</center>
</td>
<td width="10%">
</td>
</tr>
<tr>
<td colspan="3">
<br />
</td>
</tr>
<tr>
<td width="10%">
</td>
<td width="80%" class="box">
<center>
Referrals:<hr>{REFERRALS}
</center>
</td>
<td width="10%">
</td>
</tr>
<!-- End_switch_logged_in -->
All it is doing is showing one picture (money.gif).
Now, in the php file for the page, I have:
PART 2!!!!!!!!!