ตอนนี้คือกดเเล้วมันเเสดงอันเดียว พอกดครั้งต่อไปอันเเรกหาย
ที่อยากได้คือเราจะให้มันเเสดงออกมาเป็น ครั้งที่ เมื่อกด submit
ครั้งที่1 เป็นคู่ที่ 1
ครั้งที่2 เป็นคู่ที่ 2
ครั้งที่3 เป็นคู่ที่ 3
ครั้งที่4 เป็นคู่ที่ 4
.
.
ไปถึง10ยังไงครับ
<!DOCTYPE html>
<html>
<head>
<title>
</title>
</head>
<body>
<script>
function loadpage()
{
window.location='new.php'
}
</script>
<form action="" method ="post" name="MyForm" >
<input type="radio" name="winlose2" id="10" value="ชนะ" checked >ชนะ<br>
<input type="radio" name="winlose2" id="11" value="เสมอ" >เสมอ<br>
<input type="radio" name="winlose2" id="12" value="แพ้" >แพ้<br>
<br><br><br>
<input type="radio" name="team" id="10" value="เขียว" checked>เขียว<br>
<input type="radio" name="team" id="11" value="เหลือง" >เหลือง<br>
<input type="radio" name="team" id="12" value="เเดง" >เเดง<br>
<input class ="btn-large-green" type="submit" name="submit"id="submit"value="submit" >
<input class ="btn-large-green" type=button value="Refresh" name="bt-re" onClick="loadpage();"><br>
</form>
<table width="600" border="1">
<tr>
<th width="10"> <div align="center">คู่ที่ </div></th>
<th width="50"> <div align="center">ทีม </div></th>
<th width="91"> <div align="center">ผล </div></th>
</tr>
<?php
$b=1;
$i=1;
//while ( $b<= 10) {
# code...
if (isset($_POST['submit']) && $_POST['submit']=="submit" && isset($_POST['winlose2'])&&isset($_POST['team'])){
# code...
?>
<tr>
<td><?php echo $b; ?></td>
<td><?php echo ($_POST['team']); ?></td>
<td><?php echo ($_POST['winlose2']); ?></td>
</tr>
<?php
}
//}
//echo "<h2>".$b.($_POST['team'])."</h2>";
//echo "<h2>".($_POST['winlose2'])."</h2>";
?>
</body>
</html>
ผมมีค่า radio อยากให้เเสดงข้อมูล1-10 เมื่อกด submit
ที่อยากได้คือเราจะให้มันเเสดงออกมาเป็น ครั้งที่ เมื่อกด submit
ครั้งที่1 เป็นคู่ที่ 1
ครั้งที่2 เป็นคู่ที่ 2
ครั้งที่3 เป็นคู่ที่ 3
ครั้งที่4 เป็นคู่ที่ 4
.
.
ไปถึง10ยังไงครับ
<!DOCTYPE html>
<html>
<head>
<title>
</title>
</head>
<body>
<script>
function loadpage()
{
window.location='new.php'
}
</script>
<form action="" method ="post" name="MyForm" >
<input type="radio" name="winlose2" id="10" value="ชนะ" checked >ชนะ<br>
<input type="radio" name="winlose2" id="11" value="เสมอ" >เสมอ<br>
<input type="radio" name="winlose2" id="12" value="แพ้" >แพ้<br>
<br><br><br>
<input type="radio" name="team" id="10" value="เขียว" checked>เขียว<br>
<input type="radio" name="team" id="11" value="เหลือง" >เหลือง<br>
<input type="radio" name="team" id="12" value="เเดง" >เเดง<br>
<input class ="btn-large-green" type="submit" name="submit"id="submit"value="submit" >
<input class ="btn-large-green" type=button value="Refresh" name="bt-re" onClick="loadpage();"><br>
</form>
<table width="600" border="1">
<tr>
<th width="10"> <div align="center">คู่ที่ </div></th>
<th width="50"> <div align="center">ทีม </div></th>
<th width="91"> <div align="center">ผล </div></th>
</tr>
<?php
$b=1;
$i=1;
//while ( $b<= 10) {
# code...
if (isset($_POST['submit']) && $_POST['submit']=="submit" && isset($_POST['winlose2'])&&isset($_POST['team'])){
# code...
?>
<tr>
<td><?php echo $b; ?></td>
<td><?php echo ($_POST['team']); ?></td>
<td><?php echo ($_POST['winlose2']); ?></td>
</tr>
<?php
}
//}
//echo "<h2>".$b.($_POST['team'])."</h2>";
//echo "<h2>".($_POST['winlose2'])."</h2>";
?>
</body>
</html>