Ⅰ 用php如何获取数据库中的数据并按条件存入数组中
$conn=mysql_connect(localhost,root,root) or die("could not connect mysql");
mysql_select_db(数据库埋好,$conn);
$query="SELECT * FROM 表缓液森";
$result=mysql_query($query);
while($array=mysql_fetch_array($result)){
arr[]=[$array[1],$array[2]],[$array[2],$array[3]],[$array[3],扰亩$array[4]];
}
Ⅱ php查询到多条数据结果后,将每一条结果放入数组
PHP查询到的数据存放到数组里面,一般使用$arr[]=$row的方式实现,$row是mysql_fetch_array获得的一行数据,本身是一个数组,执行上面的语句之后,这一行会添加存放在额为数组$arr的最后。
典型的例子代码是这样的:
mysql_connect('127.0.0.1','root','123456');
$sql='select*fromtest.tab';
if($res=mysql_query($sql)){
旁哗渣芦脊while($row=mysql_fetch_array($res))$result[]=$row;
mysql_free_resule($res);
}elseecho"运悄执行SQL语句:$sql<br> 错误:".mysql_error();
echo'查询结果在下面的额为数组里面:<pre>';
print_r($result);
echo'</pre>';
Ⅲ php 怎么将post的数据填入数组.
$string=$_POST["text"]; // 将字符串拆分成一个个单字 保存到数组 letter 中
for ($i=0;$i<mb_strlen($string);$i++) {
$letter[] = mb_substr($string, $i, 1);
}
Ⅳ PHP把这一串数据导入到数组
$str='{"data":[{"name":"111","img":"748.jpg","dz":"uang","sz":"22"},{"name":"222","img":"888.jpg","dz":"ngzhu","sz":"13"},{"name":"333"桐禅,"img":"999.jpg","dz":"ve","sz":"27"}]}';
$json=json_decode($str,true);
echo$json['data'][0]['name']."<br/>";
echo$json['data'][0]['img']."<br/>";
echo$json['data'][0]['dz']."<br/>";
echo$json['data'][0]['sz'返帆]."<br/>";
//或者
$json=json_decode($str);
echo$json->data[0]->name."<br/>";
echo$json->data[0]->img."<br/>";
echo$json->data[0]->漏轮雹dz."<br/>";
echo$json->data[0]->sz."<br/>";
Ⅳ php从数据库取出的数据如何写入一个新的数组
数据库提到的和族数据一般是资源差雹类型的,要逐一读出,添虚棚帆加到数组
while($row = mysql_fetch_assoc($res)){
$data[] = $row;
}
Ⅵ 如何把php 查询结果存入数组
遍历数据表,把相应的数据放到数组中即可
例如:
<?php
//定义一个数哗冲闭组,判尘用于保存读取到的数据
$contents
=
array();
$query
=
mysql_query("select
*
from
table");
//遍历数据表
while($array
=
mysql_fetch_array($query)){
$contents[]
=
$array;
}
print_r($contents);
//然后循环数组,或者通过键名使用数组
foreach($contents
as
$value){
print_r($value);
}
echo
$contents[0]['字段名称乱裂'];
?>
Ⅶ php怎么写入、存储数组数据
$content = "<?php //配置文件 return array( ";
//获取数组
foreach($form as $k=>$v ){//$form是从数据库里面读出来的数组
$k=strtoupper($k);//strtoupper是直接把PHP代码直接用,不转换
if(strtolower($v)=="true" || strtolower($v)=="false" || is_numeric($v)){
$content .= " '$k'=>$v, ";
}else{
$content .= " '$k'=>'$v', ";
}
}
$content .= "); ?>";
$file='config.inc.php'//写入配置文件(用绝对路径)
@file_put_contents($file,$content);//写入文件
Ⅷ PHP 去读数据库到数组 怎么弄
本文实例讲述了php实现通用的从数据库表读取数据到数组的函数。分享给大家供大家参考。具体分析如下:
此函数不关心表结构,只需要指定表名、结构和查询笑键条件既可态升胡以对表进行通用查询操作,非常实用。
function listmytablerows($table, $name, $field, $where, $textID) { / / Connect to the database and query execution connect (); $Sql = "select * from". $table. "". $where. "ORDER BY". $field; $Req = mysql_query($sql); $Res = mysql_num_rows($req); ?> <Select name = "<?php echo $name; ?>" id="<?php echo $textID; ?>"> <option value=""> ____</ option> <? Php / / We do a loop that will read the information for each record while ($data = mysql_fetch_array($res)) { / / We display the information from the current record ?> <Option value = "<?php echo $data['id']; ?>"> <?php echo $data[$field]; ?> </ Option> <? Php } ?> </帆拦 Select> <? Php } ?>
Ⅸ 关于php获取数据库的内容存为数组的问题
php查询mysql数据库并将结果保存到数组的方法。具体分析如下:
主要用到了mysql_fetch_assoc函数
mysql_fetch_assoc语法如下:
?
1
array mysql_fetch_assoc (resource $Result_Set)
范例代码如下:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
$UserName = 'abc';
$Password = '1234';
$DbHandle = mysql_connect ('localhost', $UserName, $Password);
if (!$DbHandle) {
die 'No database connection could be established.';
}
$DBName = 'w3db;
if (!mysql_select_db ($DBName, $DbHandle)) {
die 'Database could not be selected.';
}
$Query = "SELECT ISBN, Title, Author FROM articles";
$articles = mysql_query ($Query, $DbHandle));
while ($Row = mysql_fetch_assoc ($articles)) {
echo "ISBN = $Row['ISBN']<br />\n";
echo "Title = $Row['Title']<br />\n";
echo "Author = $Row['Author']<br />\n";
}
?>
Ⅹ PHP怎样把得到的数据的值保存在一个数组里面
input 存兆扒在着2个方式 get 和post ,并猜此你可以根据你的需求去绝迅选择。
现在很多框架都支持直接将post或者get到的数据作为整个数组保存哈
$input_array = $_GET['paramsName'];
参考链接:http://php.net/manual/zh/reserved.variables.get.php