Jump to content

Recommended Posts

then i'm printing this code it prints as "ArrayArrayArray..." not the correct information, please help me out

 

 

for ($i = 0; $i < 10; ++$i) {
$name[$i] = array(getResultById("data_set", $i));
print $name[$i];
}

function getResultById($table, $int) 
{
$query = "SELECT * FROM $table WHERE id='$int'";
$res = mysql_query($query);
$arr = mysql_fetch_row($res);

return $arr[1];
}

 

 

anyone knows the problem?

Link to comment
https://forums.phpfreaks.com/topic/136804-array-and-mysql-help/
Share on other sites

Not sure what the return $arr[1] is trying to achieve. What do you want to do?  Print the entire contents of the table?  If so try:

 

for ($i = 0; $i < 10; ++$i) {
  $name = getResultById("data_set", $i);
  foreach ($name as $key=>$value){
    echo $key," ",$value,"<br/>";
    }
  }

function getResultById($table, $int)
{
$query = "SELECT * FROM $table WHERE id='$int'";
$res = mysql_query($query);
$arr = mysql_fetch_row($res);

return $arr;
}

 

The function returns an array related to the record in the table e.g. (id=>1, name=>'bob', country=>'mongolia').  You then loop through that array to print.

 

Link to comment
https://forums.phpfreaks.com/topic/136804-array-and-mysql-help/#findComment-714514
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.