我查看了 stackoveflow 上的几篇关于创建数组的帖子,但还没有找到我想要的内容......我想尝试这么多不同的答案,并得到一个最接近我想要完成的答案。
假设我想使用此查询创建一个数组:
“从产品中选择 *”
这如何最有效地完成?
谢谢你。
PS - 请注意,我是从头开始的。
更新
我的配置文件:
`[root@CentOS testphp]# vi config.php
<?php
// Connection's Parameters
$db_host="localhost";
$db_name="tablename";
$username="username";
$password="password";
$db_con=mysql_connect($db_host,$username,$password);
$connection_string=mysql_select_db($db_name);
// Connection
mysql_connect($db_host,$username,$password);
mysql_select_db($db_name);
?>`
我试图用...创建数组的 php 代码出现语法错误:
解析错误:语法错误,第 2 行 /var/www/html/testphp/test.php 中的意外 T_VARIABLE
我犯了同样的错误:
`[root@CentOS testphp]# vi test.php
<?php include('config.php')
$query = "select * from upload_products";
$dataArray = array();
$result = mysqli_query($query, $link);
while($row = mysqli_fetch_assoc($query)) {
$dataArray[] = $row;
}
var_dump($dataArray); //Now you have your array.
?>`
任何想法......感觉就像我在这里遗漏了一些东西。而且,是的,我已经阅读了文档...逐行使用了他们的代码,查看了代码,但仍然得到与我在网上找到的所有代码示例相同的错误。