本文介绍了任何人都知道为什么这在运行时有效,但显示标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 <?phpif (isset($_POST['name'])=== true && empty($_POST['name'])=== false) { require '../db/connect.php'; $query = mysql_query("SElECT id FROM Customers WHERE Customer_Name= '".mysql_real_escape_string(trim($_POST['name']))."' "); $fred = mysql_result($query,0,'id' ); echo "$fred"; $sql = "SELECT * FROM Customers WHERE id='$fred'" ; $results= mysql_query($sql); If (!$results){ die('Invalid query:'.mysql_error()); } echo "<table border=1> <tr> <th>Customer</th> <th>Region</th> <th>Email</th> <th>Phone</th> </tr>"; while($result= mysql_fetch_array($results) ){ echo"<tr>"; echo"<td>".$result['Customer_Name']."</td>"; echo"<td>".$result['Physical_Region']."</td>"; echo"<td>".$result['Email_Address']."</td>"; echo"<td>".$result['Phone_Number']."</td>"; echo"</tr>"; } echo"</table>";} ?> 推荐答案 这篇关于任何人都知道为什么这在运行时有效,但显示标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-27 16:37