如何使用 php 和 jQuery 在不同的 div 标签中显示 mysql 表列?
以下 php 页面从 mysql 表获取值: 它的 getTechnoXchange.php
<?php
error_reporting(E_ALL);
$host="localhost";// Host name
$db_name="parth"; // Database name
$con = mysql_connect("localhost","root","") or die('Could not connect to MySQL server: ' . mysql_error());
mysql_select_db("parth") or die('Could not connect to database' . mysql_error());
$pricequery="SELECT price FROM technoxchange;" ;
$result=mysql_query($pricequery);
while($row= mysql_fetch_array($result)){
echo $row['price'];
echo "<br/>";
}
?>
但我希望我的 jQuery 能够获取该数组并显示在不同的 div 标签中。
我的 javascript 在不同的 php 文件“TechnoXchange.php”中:
var p;
$.get("getTechnoXchange.php", function(data){
p= Array.prototype.slice.call(data);
});
document.getElementById('priceUnicus').innerHTML = p[0];
document.getElementById('priceHire').innerHTML = p[1];
document.getElementById('priceMonsterArena').innerHTML = p[2];
它没有显示在不同的 div 标签中。等待您的答复!
The following php page is getting the values from mysql table :
its getTechnoXchange.php
<?php
error_reporting(E_ALL);
$host="localhost";// Host name
$db_name="parth"; // Database name
$con = mysql_connect("localhost","root","") or die('Could not connect to MySQL server: ' . mysql_error());
mysql_select_db("parth") or die('Could not connect to database' . mysql_error());
$pricequery="SELECT price FROM technoxchange;" ;
$result=mysql_query($pricequery);
while($row= mysql_fetch_array($result)){
echo $row['price'];
echo "<br/>";
}
?>
But I want that my jQuery to get that array and display in different div tags.
My javascript in a different php file "TechnoXchange.php" :
var p;
$.get("getTechnoXchange.php", function(data){
p= Array.prototype.slice.call(data);
});
document.getElementById('priceUnicus').innerHTML = p[0];
document.getElementById('priceHire').innerHTML = p[1];
document.getElementById('priceMonsterArena').innerHTML = p[2];
Its not getting displayed in the different div tags. Waiting for your answers!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据上面提供的有限信息,我建议对结果进行 json_encoding 并将其发送给客户端,以便更容易处理价格。这是一些粗略的代码。
对于 php
对于 js
From the limited information provided above, i would suggest json_encoding the result and sending it to the client so the prices are easier to work with. This is some rough code.
For the php
For the js