Nieuw lid |
|
Ik krijg me waardes niet van mijn form. enig idee?
Comptextboxen:
<?php
$poulenummer="A";
if ( isset($_POST["Aantalreeksen"]))
{
$aantalreeksen=$_POST["Aantalreeksen"];
} else {
echo "you fail sir, now i'm going to go have a sweet drink.";
}
if ( isset($_POST["Aantalploegen"]))
{
$aantalploegenperreeks= $_POST["Aantalploegen"];
} else {
echo "you fail my lord, now i'm going to go have a sweet drink.";
}
$aantalreeksen=$_POST["Aantalreeksen"];
$reeksnaam = array();
$ploeg = array();
/*
Tabellen genereren waar men de ploegen kan invoeren
*/
for($i=0;$i<$aantalreeksen;$i++){
echo '<table style="float:left" border="no" cellpadding="2" cellspacing="2" id="table1">';
echo '<th colspan="1" bgcolor="#304F87">'.$poulenummer.'</th>';
$reeksnaam[$i] = $poulenummer;
for($t=1;$t<=$aantalploegenperreeks;$t++){
echo '<tr>';
echo '<td>';
echo '<form method="post" action="DB/bevestigingDB.php"name="textBoxen" onsubmit="controleer(this)">';
echo '<input type="text" name=veld["'.$ploeg[$t].']" maxlength="50" id="veld"/>';
echo '</form>';
echo '</td>';
echo '</tr>';
echo '<tr>';
if($t == $aantalploegenperreeks){
$poulenummer++;
echo '</table>';
}
}
}
echo '<br/>';
?>
en hier competitieve competitie:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Invoeren aantal competitieve reeksen</title>
<script type="text/javascript" src="JavaScripts/JS_CompComp.js"></script>
</head>
<body class="algemeenStijl" background="afbeeldingen/Lay-Out/html-background (1).png">
<style type="text/css">
.algemeenStijl #container {
width: 100%;
}
.algemeenStijl #header {
background: #304F87 ;
padding: 0 10px 0 20px;
height: 7cm;
}
.algemeenStijl #mainContent {
padding: 0 20px;
}
.algemeenStijl #footer {
padding: 0 2px;
background:#304F87;
height: 0,5cm;
}
</style>
<body class="algemeenStijl">
<div id="container">
<table width="90%" height="50%" align="center" border="3" bordercolor="#003399" style="border-style:solid">
<tr>
<td>
<div id="header">
<?php include("template_menu.php"); ?>
</div>
<div id="mainContent" style="background-color: #F9F9F9">
<table cellpadding="5" cellspacing="5" >
<form action="compTextBoxen.php" method="POST" name="data" onsubmit="controleer(this)">
<table width="100%" border="no">
<tr>
<td width="58%">
<h1 style="font-family:'Courier New', Courier, monospace">Aantal Reeksen:</h1>
</td>
<td width="42%">
<input type="text" name="Aantalreeksen"/>
</td>
</tr>
<tr>
<td>
<h1 style="font-family:'Courier New', Courier, monospace">Aantal ploegen per reeks:</h1>
</td>
<td>
<input type="text" name="Aantalploegen"/>
</td>
</tr>
</table>
<table width="100%" border="no">
<tr>
<form action="compTextBoxen.php" method="POST" name="go">
<td colspan="2"><a href="frame-home.php">
<input type="submit" name="vorige" value="vorige" id="vorige" /></a>
<td colspan="2"><center><a href="compTextBoxen.php">
<input type="submit" name="volgende" value="volgende" id="volgende" /></center>
</form>
</td>
</tr>
</table>
</form>
</table>
</div>
<div id="footer">
<?php include("template_voet.php"); ?>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>
|