|
|
|
มือใหม่php แสดงข้อมูลจากdatabaseแล้วกดลิ้งที่รูป1ก็จะโชว์ข้อมูลของรูป1 กดที่รูป2ก็จะโชว์ข้อมูลของ2ครับทำอย่างไรครับ |
|
|
|
|
|
|
|
show.php
<a href="query_show_animal.php?id=<?php $row['id']; ?>">Link</a>
query_show_animal.php
$id=$_GET['id'];
$sql= mysqli_query($con, "SELECT id FROM tb_example WHERE id='$id'");
Remark : สะกดไวยากรณ์ภาษาอังกฤษให้ถูกด้วยครับ Fetch คือการวนทีละแถว เพราะฉะนั้นต้องเป็น row ไม่ใช่ rows
|
ประวัติการแก้ไข 2020-05-03 09:50:22
|
|
|
|
Date :
2020-05-03 09:49:49 |
By :
Genesis™ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผิด 3 อย่าง
1 ลิงค์ส่งข้อมูลไม่กำหนด ตัวเลือก ใช้ของ คห 1
2 ตัวอย่าง การแสดงผลไม่มีให้ก็ได้แต่เดา ตัวอย่าง ตามคห 1
3 สิ่งนี้สำคัญมาก จะขอความช่วยเหลือก็ควรมีข้อมูลให้ครบ อย่าให้ต้องเดาเอาเอง
มีแค่โค๊ดฝั่งเลือกข้อมูล แต่ไม่มีฝั่งแสดงข้อมูล
|
ประวัติการแก้ไข 2020-05-03 14:52:40
|
|
|
|
Date :
2020-05-03 14:52:00 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาใหม่ครับ
Code (PHP)
<?php
//show_dogs.php
//เลือกข้อมูล
session_start();
include("connect.php");
$sql ="SELECT * FROM animal";
$result = $conn->query($sql);
?>
//แสดงรูปหมา
<div class="row">
<?php
while($row =$result->fetch_assoc()){
?>
<div class="col-lg-4 col-md-6">
<div class="single-cat-list">
<?php
if(!empty($row["img"])){
?>
<a href="query_show_animal.php"> <img src="uploads/animal/<?php echo $row["img"]; ?>" class="img-fluid" width="80"></a>
<?php }else{ ?>
<a href="query_show_animal.php?>"><img src="uploads/animal/bg1.jpg" class="img-fluid" width="80"></a>
<?php } ?>
</div>
<figure>
<figcaption align="center"><b class="b"><br><?php echo $row['name']; ?></b></figcaption>
</figure>
</div>
<?php } ?>
</div>
</div>
?>
Code (PHP)
<?php
//หน้าquery_show_animal.php
session_start();
include("connect.php");
$sql ="SELECT * FROM animal";
$result = $conn->query($sql);
?>
<div class="container">
<div class="row my-3">
<?php while ($row =$result->fetch_assoc()){ ?>
<div class="col-lg-6 md-6 text-right">
<img src="uploads/animal/<?php echo $row['img'];?>" class="img-fluid" width="350">
</div>
<div class="col-md-6 pt-5" >
<h2><?php echo $row['name'];?></h2>
<h3>สถานะ <?php echo $row['status'];?><b></b></h3><br>
</div>
<?php } ?>
</div>
</div>
|
|
|
|
|
Date :
2020-05-03 15:48:29 |
By :
methus.phon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
//show_dogs.php
//บันทัดที่ 20 ดูตัวอย่าง คห 1
Code (PHP)
<?php
//หน้าquery_show_animal.php
session_start();
include("connect.php");
$sql ="SELECT * FROM animal"; // ตรงนี้ ดูตัวอย่าง คห 1
$result = $conn->query($sql);
?>
|
|
|
|
|
Date :
2020-05-03 16:02:58 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กดที่รูปหน้า show_dogs.phpแล้ว ไปหน้าquery_show_animal.php มันไม่โชว์ข้อมูลเลยครับ
หน้า show_dogs.php หลังแก้โค้ด
Code (PHP)
<?php
//เลือกข้อมูล
session_start();
include("connect.php");
if (isset($_GET['id'])) {
$id = $_GET['id'];
} else {
$id = '';
}
$sql ="SELECT * FROM animal";
$result = $conn->query($sql);
$result = $conn->query($sql) or die($conn->error);
?>
//แสดงรูปหมา
<div class="row">
<?php
while($row =$result->fetch_assoc()){
?>
<div class="col-lg-4 col-md-6">
<div class="single-cat-list">
<?php
if(!empty($row["img"])){
?>
<a href="query_show_animal.php?id=<?php $row['id']; ?>"> <img src="uploads/animal/<?php echo $row["img"]; ?>" class="img-fluid" width="80"></a>
<?php }else{ ?>
<a href="query_show_animal.php?id=<?php $row['id']; ?>"><img src="uploads/animal/bg1.jpg" class="img-fluid" width="80"></a>
<?php } ?>
</div>
<figure>
<figcaption align="center"><b class="b"><br><?php echo $row['name']; ?></b></figcaption>
</figure>
</div>
<?php } ?>
</div>
</div>
Code (PHP)
//หน้า query_show_animal.php
//เลือกข้อมูล
<?php
session_start();
include("connect.php");
if (isset($_GET['id'])) {
$id = $_GET['id'];
} else {
$id = '';
}
$sql ="SELECT id FROM animal WHERE id='$id'";
$result = $conn->query($sql);
$result = $conn->query($sql) or die($conn->error);
?>
//แสดงข้อมูล
<div class="container">
<div class="row my-3">
<?php while ($row =$result->fetch_assoc()){ ?>
<div class="col-lg-6 md-6 text-right">
<img src="uploads/animal/<?php echo $row['img'];?>" class="img-fluid" width="350">
</div>
<div class="col-md-6 pt-5">
<h2><?php echo $row['name'];?></h2>
<h3>สถานะ <?php echo $row['status'];?><b></b></h3><br>
</div>
<?php } ?>
</div>
</div>
|
|
|
|
|
Date :
2020-05-03 17:48:38 |
By :
methus.phon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$sql ="SELECT * FROM animal WHERE id='$id'";
$result = $conn->query($sql); // isset ไม่ต้อง die
//$result = $conn->query($sql) or die($conn->error);
|
|
|
|
|
Date :
2020-05-03 19:21:05 |
By :
PhrayaDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|