-Vipr-
Legacy Member
Kan je op een of andere manier 2 forms op 1 page zetten?
Code:
echo"<form action=Layout.php?goto=forumgroup&action=do_add method=POST>";
echo"<table width=650 border=0 cellpadding=5 cellspacing=0 align=left>";
echo" <tr>";
echo"<td height=20 valign=top background=http://www.kta-informaticabeheer.be/dr/zijkan.png>Whats the new group?</td>";
echo"</tr>";
echo"<tr>";
echo"<td height=14 valign=top background=http://www.kta-informaticabeheer.be/dr/zijkan2.png>.:Group:.<input type=text name=group size=42></td>";
echo"</tr>";
echo"<tr>";
echo"<td height=20 valign=top align=right background=http://www.kta-informaticabeheer.be/dr/zijkan2.png></td>";
echo"</tr>";
echo"<tr>";
echo"<td height=20 valign=top align=right><input type=submit value=Send name=bovenste class=button></td>";
echo"</tr>";
echo"</table>";
echo"<br><br><br><br><br><br><br><br>";
echo"<form action=Layout.php?goto=forumgroup&action=do_add2 method=POST>";
echo"<table width=650 border=0 cellpadding=5 cellspacing=0 align=left>";
echo" <tr>";
echo"<td height=20 valign=top background=http://www.kta-informaticabeheer.be/dr/zijkan.png>Whats the new SubGroup?</td>";
echo"</tr>";
echo"<tr>";
echo"<td height=14 valign=top background=http://www.kta-informaticabeheer.be/dr/zijkan2.png>.:SubGroup:.<input type=text name=subgroup size=42></td>";
echo"</tr>";
echo"<tr>";
echo"<td height=14 valign=top background=http://www.kta-informaticabeheer.be/dr/zijkan2.png>";
echo"<select name=subgroupss class=fields>";
$namen="select text from drforumG";
$res_namen=mysql_query($namen);
while($row_namen=mysql_fetch_array($res_namen))
{
$subgroups = $row_namen[0];
echo"<option value=$subgroups selected>$subgroups</option>";
}
echo"</select></td>";
echo"</tr>";
echo"<tr>";
echo"<td height=20 valign=top align=right background=http://www.kta-informaticabeheer.be/dr/zijkan2.png></td>";
echo"</tr>";
echo"<tr>";
echo"<td height=20 valign=top align=right><input type=submit value=Send name=onderste class=button></td>";
echo"</tr>";
echo"</table>";