0

如何将信息存储在数组中?

我正在尝试从数据库中获取信息,然后将 HTML 代码存储在数组中。

这可能吗?如果有怎么办?

function echothatshit() {
    $sqll=mysql_query("select id,data from produkter where weight='1'");
    $alla = array();    
    while($row=mysql_fetch_array($sqll))
    {
        $idd=$row['id'];
        $data=$row['data'];
        $alla[] = '<option value="'.$idd.'">'.$data.'</option>';
    }
}

$test2 = echothatshit();                       
echo $test2;
4

4 回答 4

4

您只需要return $alla;最后一个函数,也不能直接回显数组,您需要循环它。

于 2012-07-05T12:42:17.887 回答
2
function echothatshit() {
    $sqll=mysql_query("select id,data from produkter where weight='1'");
    $alla = array();
    $i=0;    
    while($row=mysql_fetch_array($sqll))
    {
        $idd=$row['id'];
        $data=$row['data'];
        $alla[$i] = '<option value="'.$idd.'">'.$data.'</option>';
        $i++;
    }
    $yourVariable="";
    for ($j=0;$j<$i;$j++)
    {
        $yourVariable.=$alla[$j];
    }
    return $yourVariable;
}

$test2 = echothatshit();                       
echo $test2;
于 2012-07-05T12:45:20.407 回答
1

为什么不使用$alla字符串,即(带有一些格式化/重命名/简化):

function getProductsHTML()
{
  $sql = mysql_query("select id,data from produkter where weight='1'");
  $html = '';

  while($row = mysql_fetch_array($sql))
    $html .= '<option value="'.$row['id'].'">'.$row['data'].'</option>'."\n";

  return $html;
}

echo getProductsHTML();
于 2012-07-05T12:45:13.317 回答
0
function echothatshit() {
$sqll=mysql_query("select id,data from produkter where weight='1'");
$alla = array();    
while($row=mysql_fetch_array($sqll))
    {
$idd=$row['id'];
$data=$row['data'];
$alla[] = '<option value="'.$idd.'">'.$data.'</option>';
    }
return $alla;
}
$test2 = echothatshit();                       
echo $test2;

如果您希望 $test2 获取数组 $alla,请将其返回。然后,为了正确打印数组,请使用

echo "<pre>";
print_r($test2);
echo "</pre>";
于 2012-07-05T12:46:16.230 回答