Nieuw lid |
|
Ik ben me site ffjte aan het fixen en verbeteren en ik kom steeds verder (dankzij sitemaster ) maar nu heb ik weer het volgende probleem
www.citexx.nl/members.php --> zo wil ik het hebben maar dan via php met ?pagina=members
dit is de code van members.php
<?php
<table width="200" border="0" cellpadding="0" cellspacing="0" bordercolor="#7A0404">
<tr>
<th scope="row"><div align="left"><span class="style6">Line-up :</span></div></th>
</tr>
</table>
<table width="375" height="86" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="86" valign="top" scope="row"><div align="left" class="style9">
<p><span class="style11"><IMG height="12" alt="nlflag" src="images/nlflag.jpg" width="18"> Jimm (leader) <BR>
<IMG src="images/ilvlag.gif" alt="nl" width="18" height="12" border="0"> Jewie
<BR>
<IMG src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> Maketoire <BR>
<IMG src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> Robjah <BR>
<IMG src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> Tommy <BR>
<IMG src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> xaro<span class="style16">c</span> </span><span class="style11"><BR>
<img src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> ysco </span></p>
<p> </p>
</div></td>
</tr>
</table>
?>
<?php <table width="200" border="0" cellpadding="0" cellspacing="0" bordercolor="#7A0404"> <tr> <th scope="row"><div align="left"><span class="style6">Line-up :</span></div></th> </tr> </table> <table width="375" height="86" border="0" cellpadding="0" cellspacing="0"> <tr> <td height="86" valign="top" scope="row"><div align="left" class="style9"> <p><span class="style11"><IMG height="12" alt="nlflag" src="images/nlflag.jpg" width="18"> Jimm (leader) <BR> <IMG src="images/ilvlag.gif" alt="nl" width="18" height="12" border="0"> Jewie <BR> <IMG src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> Maketoire <BR> <IMG src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> Robjah <BR> <IMG src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> Tommy <BR> <IMG src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> xaro<span class="style16">c</span> </span><span class="style11"><BR> <img src="images/nlflag.jpg" alt="nl" width="18" height="12" border="0"> ysco </span></p> <p> </p> </div></td> </tr> </table> ?>
en dit is van die ?pagina=members
<?php
if($action == "members"){
echo "<table width=\"200\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bordercolor=\"#7A0404\">
<tr>
<th scope=\"row\"><div align=\"left\"><span class=\"style6\">Line-up :</span></div></th>
</tr>
</table>";
echo "<IMG height=\"12\" alt=\"nlflag\" src=\"images/nlflag.jpg\" width=\"18\"> Jimm (leader) <BR>
<IMG src=\"images/ilvlag.gif\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> Jewie <BR>
<IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> Maketoire <BR>
<IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> RobJah <BR>
<IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> Tommy <BR>
<IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> xaroC<BR>
<IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> ysco <BR>
<p>";
}
?>
<?php if($action == "members"){ echo "<table width=\"200\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bordercolor=\"#7A0404\"> <tr> <th scope=\"row\"><div align=\"left\"><span class=\"style6\">Line-up :</span></div></th> </tr> </table>"; echo "<IMG height=\"12\" alt=\"nlflag\" src=\"images/nlflag.jpg\" width=\"18\"> Jimm (leader) <BR> <IMG src=\"images/ilvlag.gif\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> Jewie <BR> <IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> Maketoire <BR> <IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> RobJah <BR> <IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> Tommy <BR> <IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> xaroC<BR> <IMG src=\"images/nlflag.jpg\" alt=\"nl\" width=\"18\" height=\"12\" border=\"0\"> ysco <BR> <p>"; } ?>
zoals je ziet staat werkt dat tabell niet:(
ik hoop dat jullie me kunnen helpen
|