4 tabeller i PHP fil
Jeg har dette (index.php) fil som koden vist nedenunder.Jeg vil gerne lave 4 tabeller så siden seer ud sådan:
++++++++++++++++++
+Login + +
+ (1) + +
+++++++++++ 2 +
+ + + +
+ 3 + 4 + +
++++++++++++++++++
Kig lige på www.kalemati.com
for at forstå hvad jeg mener.
Hvordan ?
Tak
-------------------------
<?
include "init.php";
include "$apps_path[libs]/function.php";
include "html_header.php";
$err = $_GET[err];
if ($err)
{
echo "<font color=red>$err</font><br><br>";
}
$content = "
<h1> Login</h1>
<p>
<table align=center width=200 cellpadding=1 cellspacing=1 border=0>
<form action=login.php method=POST>
<tr>
<td width=30%>Username</td>
<td width=3 align=center> : </td>
<td width=70%><input type=text name=username maxlength=100 size=10></td>
</tr>
<tr>
<td width=30%>Password</td>
<td width=3 align=center> : </td>
<td width=70%><input type=password name=password maxlength=100 size=10></td>
</tr>
<tr>
<td width=100% colspan=3><input type=submit class=button value=Login></td>
</tr>
</form>
</table>
";
echo $content;
$content = "
<ul type=square>
<p align=center><li><b><a href=\"forgot.php\">Forgot your password ?</a></b></p>
<p align=center><li><b><a href=\"signup.php\">Free registration</a></b></p>
</ul>
";
echo $content;
include "html_footer.php";
?>
-------------------------
