Hallo zusammen,
ich bin immer noch mit meinem Tippspiel dran (werde es wohl nicht mehr bis Samstag schaffen ). Naja, jetzt bin ich an dem Punkt, wo man Tippen kann. Hoffe das gehört auch zu PHP und nicht doch noch zu HTML. Dafür habe ich folgendes Script:
Das ist auch so wie ich das haben will. Allerdings habe ich dabei das Problem, das ich nicht genau weis, wie ich die <input> felder für die Tipps benennen muss, damit ich auch alle Tipps verarbeiten kann. So wie es jetzt ist, kann ich nur ohne Schleife den Ersten Tipp verarbeiten, was ja auch logisch ist, da ja alle <input>'s immer gleich benannt sind. Ich hoffe ihr wisst wie ich das meine. Evtl. könnte man es mit einer for Schleife mach, indem man iwie zählt, wie viele verschiedene spielID's mit Tipps abgegeben wurden. Da hab ich allerdings keinen Ansatz für.
Hoffe mir kann jemand helfen, damit ich vllt. doch noch pünktlich fertig werde
Schönen Abend noch
Christoph
ich bin immer noch mit meinem Tippspiel dran (werde es wohl nicht mehr bis Samstag schaffen ). Naja, jetzt bin ich an dem Punkt, wo man Tippen kann. Hoffe das gehört auch zu PHP und nicht doch noch zu HTML. Dafür habe ich folgendes Script:
PHP-Code:
<?
include('config.php');
$sql = sprintf("Select `spielID`, `gruppe`, `mannschaft_1`,
`mannschaft_2`, `spielort`, `datum`, `uhrzeit` From `spiele`
Where `gruppe` = '%s' AND `tore_m1` = '' AND `tore_m2` = ''",
mysql_real_escape_string($_GET['gruppe']));
$query = mysql_query($sql);
echo "<h3>Gruppe ".$_GET['gruppe']."</h3>";
echo "<form method='POST' action='index1.php?a=register_tipp'> \n";
echo "<table border='1'> \n";
echo "<tr> \n";
echo "<td><b>Datum</b></td> \n";
echo "<td colspan='3'><b>Begegnung</b></td> \n";
echo "<td colspan='3'><b>Tipp</b></td> \n";
echo "<td><b>Anstoss</b></td> \n";
echo "</tr> \n";
while ($spiel = mysql_fetch_assoc($query)) {
echo "<tr> \n";
echo "<td>".$spiel['datum']."</td> \n";
echo "<td>".$spiel['mannschaft_1']."</td> \n";
echo "<td> : </td> \n";
echo "<td>".$spiel['mannschaft_2']."</td> \n";
echo "<td><input type='text' name='tore_m1' maxlength='2' style='width:20px;'></td> \n";
echo "<td> : </td> \n";
echo "<td><input type='text' name='tore_m2' maxlength='2' style='width:20px;'></td> \n";
echo "<td>".$spiel['uhrzeit']." Uhr</td> \n";
echo "<td><input type='hidden' name='spielID' value='".$spiel['spielID']."'></td> \n";
echo "</tr> \n";
}
echo "<tr> \n";
echo "<td colspan='9'><input type='submit' value='Tipp eintragen'></td> \n";
echo "</tr> \n";
echo "<tr> \n";
echo "<td colspan='9'><input type='hidden' name='spielerID' value='".$_SESSION['spielerID']."'></td> \n";
echo "</tr> \n";
echo "</table> \n";
echo "</form> \n";
?>
Hoffe mir kann jemand helfen, damit ich vllt. doch noch pünktlich fertig werde
Schönen Abend noch
Christoph
Kommentar