Jump to content

Array help


prudens

Recommended Posts

$conn = mysql_connect ($sql_host,$sql_user,$sql_pass);
$select = mysql_select_db ($sql_db,$conn);
$query = "SELECT * FROM " . $sql_table_legislation . " WHERE id = $id";
$results = mysql_query ($query);
$row = mysql_fetch_array($results);
mysql_close($conn);
//
//$row should be LIKE "0219209,2923989,585783,..."
$out = explode(',', $row);
for ($i=0; $i<count($out); $i++)
{
	echo $out[$i] . '<br>';
}

 

 

The output is "Array".... for some reason... could you help please???

Link to comment
https://forums.phpfreaks.com/topic/93965-array-help/#findComment-482179
Share on other sites

Try this instead:

 

<?php
conn = mysql_connect ($sql_host,$sql_user,$sql_pass);
$select = mysql_select_db ($sql_db,$conn);
$query = "SELECT * FROM " . $sql_table_legislation . " WHERE id = $id";
$results = mysql_query($query);
if($results){
  $arr = mysql_fetch_assoc($run);
  foreach($arr as $key => $value){
      echo "$key = $value <br />";
  }
}
?>

 

Let me know if that works.

Link to comment
https://forums.phpfreaks.com/topic/93965-array-help/#findComment-482217
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.