我尝试使用 Jquery、php 和 SQL 进行简单的跨度替换。我认为我对此进行了正确编码,但没有显示任何内容。我使用 jQuery 而不是 $ 来注意代码不会与正在使用的另一个脚本发生冲突。我怎样才能解决这个问题:
jQuery:
jQuery.ajax({
type: "POST",
url: "http://www.mysite.com/report/reportScripts/getData.php",
data: "&id=<?php echo $_GET['repId']; ?>",
dataType: 'html';
success: function(data){
jQuery('.msgbox').html(response);
}
});
PHP:
$con = mysql_connect('localhost', '****', '****');
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("*****", $con);
$sql="SELECT * FROM report_ordered WHERE referenceNum = '".$repId."'";
$result = mysql_query($sql);
$row = mysql_fetch_array($result);
echo $row['name'];
HTML 跨度:
<span id="msgbox"></span>