|
|
|
สอบถาม List/Menu 2 List ดึงข้อมูลมาจาก DataBase แต่พอ Select ทั้ง 2 อันแล้วมันส่งค่าแต่อันที่ 2 ครับ |
|
|
|
|
|
|
|
index1.php
<!DOCTYPE html>
<html>
<head>
<
</header>
<!-- end header section -->
<br>
<div class="row">
<div class="col-md-5 offset-md-1">
<div class="slider_detail">
<h1>
ฐานข้อมูล กทม.
<span>
และโรงเรียนเฉพาะความพิการ
</span>
</h1>
<br>
<?php
$con= mysqli_connect("localhost","root","","db_select") or die("Error: " . mysqli_error($con));
mysqli_query($con, "SET NAMES 'utf8' ");
error_reporting( error_reporting() & ~E_NOTICE );
date_default_timezone_set('Asia/Bangkok');
?>
<body>
<h5><span>เกณฑ์การค้นหาข้อมูล</span></h5>
<form name="form1" method="post" action="index1.php">
<select class="custom-select" style="width:280px;" aria-label=".form-select-sm example">
<option value="">เลือกเงื่อนไข</option>
<?php
$strSQL = "SELECT * FROM tb_student ORDER BY age_ ASC";
$objQuery = mysqli_query($con,$strSQL);
while($objResuut = mysqli_fetch_array($objQuery))
{
?>
<option value="<?php echo $objResuut["age_"];?>"><?php echo $objResuut["age_"]?></option>
<?php
}
?>
</select>
<br> <br>
<div><h5><span>เขต</span> </div>
<select name="name_th" class="custom-select" style="width:280px;" aria-label=".form-select-sm example">
<option value=""><-กรุณาเลือกเขต-></option>
<?php
$strSQL = "SELECT * FROM tb_student ORDER BY name_th ASC";
$objQuery = mysqli_query($con,$strSQL);
while($objResuut = mysqli_fetch_array($objQuery))
{
?>
<option value="<?php echo $objResuut["name_th"];?>"><?php echo $objResuut["name_th"]?></option>
<?php
}
?>
</select>
<button type="submit" class="btn btn-primary" name="btn_search" id="btn_search">ค้นหา</button>
<a href="?" class="btn btn-danger">ล้างค่า</a>
</form>
</body>
</html>
<?php
mysqli_close($con);
?>
[/php]
index1.php
<html>
<head>
<title>ฐานข้อมูล กทม. และโรงเรียนเฉพาะความพิการ</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<?php
$con= mysqli_connect("localhost","root","","db_select") or die("Error: " . mysqli_error($con));
mysqli_query($con, "SET NAMES 'utf8' ");
error_reporting( error_reporting() & ~E_NOTICE );
date_default_timezone_set('Asia/Bangkok');
?>
<body>
<div class="container mt-3">
<h1>ฐานข้อมูล กทม. และโรงเรียนเฉพาะความพิการ</h1>
<table class="table" >
<thead>
<tr>
<th>เขต</th>
<th>โรงเรียนร่วมประถมศึกษา/ โรงเรียนขยายโอกาส</th>
<th>เกณฑ์</th>
<th>เบอร์ติดต่อ</th>
<th>เว็บไซต์</th>
</tr>
</thead>
<?php
$strSQL = "select * from tb_student where name_th = '".$_POST["name_th"]."'";
$objQuery = mysqli_query($con,$strSQL);
while($objResult = mysqli_fetch_array($objQuery))
{
echo "<tr class= table-info>";
echo "<td>".$objResult["name_th"]."</td>";
echo "<td>".$objResult["school_"]."</td>";
echo "<td>".$objResult["age_"]."</td>";
echo "<td>".$objResult["tel_"]."</td>";
echo "<td> <a href = ".$objResult["link_"]."</a></td>";
echo "</tr>";}
?>
</table>
</body>
</html>
</div>
<?php
mysqli_close($con);
?>
[/php]
Tag : PHP
|
|
|
|
|
|
Date :
2022-09-14 16:19:31 |
By :
nuy_bapalung |
View :
605 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอภาพประกอบเกี่ยวกับปัญหาที่เกิดขึ้นหน่อยครับ ว่าคลิกตรงไหนแล้วเกิดอะไรขึ้นบ้าง
|
|
|
|
|
Date :
2022-09-15 09:02:52 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เลือก เกณฑ์ และ เขต เสร็จแล้วกด ค้นหา ข้อมูลจะแสดงผลเหมือนรูปสุดท้ายครับ
#รบกวนด้วยครับ #มือใหม่มาก
#ขอบคุณครับ PHP CI MANIA
|
|
|
|
|
Date :
2022-09-15 09:33:13 |
By :
nuy_bapalung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL = "select * from tb_student where name_th = '".$_POST["name_th"]."'";
มันค้นแค่ชื่อนี่ครับ
|
|
|
|
|
Date :
2022-09-19 23:34:38 |
By :
Attt |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|