PHP页面怎么分离为HTML+PHP 14
<?php$yyidc=$_POST['yyidc'];$con=mysql_connect("localhost","root","123456")ordie("数据库...
<?php
$yyidc = $_POST['yyidc'];
$con = mysql_connect("localhost","root","123456")or die("数据库链接失败!");
mysql_select_db("guahao",$con)or die("数据库选择失败!");
mysql_query("set names 'utf8'");
$sql = "select * from gh_doctor ";
$sql = "SELECT * FROM gh_doctor WHERE rid = '$yyidc' ";
$res = mysql_query($sql,$con);
$countrows = mysql_num_rows($res);
if($countrows!==0){
while($list = mysql_fetch_row($res)){
echo"<option value=".$list[0].">".$list[2]."</option>";
}
}
?>
<!DOCYTPE html>
具体问题是这样,模板需要用到HTM,但htm里不执行PHP代码,需要做分离具体示例代码如下:
<html>
<head>
<title>示例</title>
<head>
<body>
<form action="" method="post">
/测试<input type="what" name="yyidc" id="yyid" value="6"/>
<select>
<option>查询后选择</option>
<?php
if($countrows!==0){
while($list = mysql_fetch_row($res)){
echo"<option value=".$list[0].">".$list[2]."</option>";
}
}
?>
</select>
<input type="submit" value="查询" />
</form>
</body>
</html> 展开
$yyidc = $_POST['yyidc'];
$con = mysql_connect("localhost","root","123456")or die("数据库链接失败!");
mysql_select_db("guahao",$con)or die("数据库选择失败!");
mysql_query("set names 'utf8'");
$sql = "select * from gh_doctor ";
$sql = "SELECT * FROM gh_doctor WHERE rid = '$yyidc' ";
$res = mysql_query($sql,$con);
$countrows = mysql_num_rows($res);
if($countrows!==0){
while($list = mysql_fetch_row($res)){
echo"<option value=".$list[0].">".$list[2]."</option>";
}
}
?>
<!DOCYTPE html>
具体问题是这样,模板需要用到HTM,但htm里不执行PHP代码,需要做分离具体示例代码如下:
<html>
<head>
<title>示例</title>
<head>
<body>
<form action="" method="post">
/测试<input type="what" name="yyidc" id="yyid" value="6"/>
<select>
<option>查询后选择</option>
<?php
if($countrows!==0){
while($list = mysql_fetch_row($res)){
echo"<option value=".$list[0].">".$list[2]."</option>";
}
}
?>
</select>
<input type="submit" value="查询" />
</form>
</body>
</html> 展开
1个回答
展开全部
前后端分离可以使用ajax,php后台return,如果数据获取成功,返回list,
ajax代码如下:
$.ajax({
type: "GET",
url: "test.json",//php请求数据的地址
data: {aaa:'aaa'},//可选,发送到服务器的数据
dataType: "json",
success: function(data){
$('#resText').empty(); //清空resText里面的所有内容
var html = '<option>查询后选择</option>';
$.each(data, function(commentIndex, comment){
html += '<option value="' + comment[0]+ '">"' + comment[1]+ '</option>';
});
$('#resText').html(html);
}
});
select 加上一个id="resText".大概的意思就是这样,具体根据你的需求在做修改。
ajax代码如下:
$.ajax({
type: "GET",
url: "test.json",//php请求数据的地址
data: {aaa:'aaa'},//可选,发送到服务器的数据
dataType: "json",
success: function(data){
$('#resText').empty(); //清空resText里面的所有内容
var html = '<option>查询后选择</option>';
$.each(data, function(commentIndex, comment){
html += '<option value="' + comment[0]+ '">"' + comment[1]+ '</option>';
});
$('#resText').html(html);
}
});
select 加上一个id="resText".大概的意思就是这样,具体根据你的需求在做修改。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询