根据上面的标题,我的问题与iframe和php连接有关。 示例:当用户在提供的登录表单上插入用户名和密码后单击登录按钮。下面的iframe应该加载新的字段名称responsiblity,其中包含与之前输入的用户名相关的数据库中的数据。但问题是我的iframe没有显示任何字段但只返回php代码" $ row [1] &#34 ;; }?> "
以下是我的代码:
的login.php
<?
require "conpiq.php";
$link = mysqli_connect($host,$user,$pass,$db);
$pname=@$_POST["nam"];
$ppass=@$_POST["mypass"];
$q="select * from testing where user_name LIKE '$pname' AND password LIKE '$ppass'";
$result=mysqli_query($link,$q);
while($row=mysqli_fetch_array($result))
{
echo"<option value='$row[1]'>$row[1]</option>";
}
?>
<br>
<button onclick="window.top.location.href='http://testpage.html'">Next</button>
testconn.php
<?
$host="localhost";
$user="root";
$pass="12345";
$db="testing";
?>
conpiq.php
R_h[x], R_v[x], -50<=x<=50
我想知道我的&#34; testconn.php&#34;以及它为什么不返回选择字段并显示代码的一半?