สอบถามผู้รู้หน่อยค่ะ ต้องการ ซ่อนตาราง โดยการ select จากอีกหน้า ให้ซ่อน tr ในตารางอีกหน้าค่ะ โดยมีเงื่อนไขดังนี้
เมื่อกด เลือก เเสดง หรือ ไม่ให้แสดง ใน tr อีกหน้า ต้องเป็นไปตามที่เราเลือกค่ะ
<select>
<option value="0">แสดงหน้าเว็บ</option>
<option value="1">ไม่ให้แสดงหน้าเว็บ</option>
</select>
อันนีหน้าแสดง เมื่อกำหนด select จากหลังบ้าน
Code (PHP)
<?
include("include/connect.php");
$strSQL = "SELECT * FROM tb_mmk order by id desc LIMIT 0,1";
$objQuery = mysql_query($strSQL) or die(mysql_error());
?>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><img src="images/demo/fag/MMK.png" width="25" height="25"></td>
<td>MMK Myanmar</td>
<td align="center">-</td>
<td align="center"><font color="#0000FF"><B><?=$objResult["buying"];?></B></font></td>
<td align="center"><font color="#0099FF"><B><?=$objResult["selling"];?></B></font></td>
</tr>
<?
}
?>
ให้ซ่อน
Code (PHP)
<tr>
<td><img src="images/demo/fag/MMK.png" width="25" height="25"></td>
<td>MMK Myanmar</td>
<td align="center">-</td>
<td align="center"><font color="#0000FF"><B><?=$objResult["buying"];?></B></font></td>
<td align="center"><font color="#0099FF"><B><?=$objResult["selling"];?></B></font></td>
</tr> //.................อะค่ะ
อันนี้หน้าหลังบ้าน ที่กำหนด select
Code (PHP)
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th width="8%">ลำดับ</th>
<th width="9%">ประเทศ</th>
<th width="13%">สกุลเงิน</th>
<th width="16%">หน่วยเงิน</th>
<th width="17%">อัตราการซื้อ</th>
<th width="17%">อัตราการขาย</th>
<th width="20%">จัดการ</th>
</tr>
</thead>
<tbody>
<tr>
<td>33</td>
<td><img src="assets/img/fag/MMK.png" width="25" height="25"></td>
<td>MMK Myanmar</td>
<td><center>-</center></td>
<td><input type="buying" name="buying" id="buying" /></td>
<td><input type="selling" name="selling" id="selling" /></td>
<td scope="row">
<select name="status_act33"id="status_act33">
<option value="0" >แสดงหน้าเว็บ</option>
<option value="1" >ไม่แสดงหน้าเว็บ</option>
</select>
<input type="submit" name="Submit" value="เพิ่มข้อมูล"><input type="reset" name="Submit2" value="รีเซต">
</td>
</tr>
</tbody>
</table>