Jump to content

[SOLVED] Echoing Array???


monkeypaw201

Recommended Posts

so, i have this

 

if (!$pilot_id)

  {

  die('Could not connect: ' . mysql_error());

  }

  mysql_select_db("cerulean_site", $pilot_id);

  $result = mysql_query("SELECT * FROM pilots ORDER BY pilot_id DESC");

 

  $row = mysql_fetch_array($result);

$pilot_id=$row;

echo $-pilot_id;

 

and its displaying

 

Array
Link to comment
https://forums.phpfreaks.com/topic/90096-solved-echoing-array/
Share on other sites

You have to put your results through a while loop like this:

 

<?php

if (!$pilot_id)
  {
  die('Could not connect: ' . mysql_error());
  }
  mysql_select_db("cerulean_site", $pilot_id);
  $result = mysql_query("SELECT * FROM pilots ORDER BY pilot_id DESC");

  while($row = mysql_fetch_array($result)) {
$pilot_id=$row;
echo $-pilot_id;
}

?>

Link to comment
https://forums.phpfreaks.com/topic/90096-solved-echoing-array/#findComment-461957
Share on other sites

rcorlew, i do not want a loop, i want only the 1st record displayed

 

Full Code:

 

<?php
$pilot_id = mysql_connect("localhost","username","password");
if (!$pilot_id)
  {
  die('Could not connect: ' . mysql_error());
  }
  mysql_select_db("cerulean_site", $pilot_id);
  $result = mysql_query("SELECT * FROM pilots ORDER BY pilot_id DESC");
  
$pilot_id = $row['pilot_id'];
echo $pilot_id;

Link to comment
https://forums.phpfreaks.com/topic/90096-solved-echoing-array/#findComment-461959
Share on other sites

You didn't fetch the row:

<?php
<?php
$pilot_id = mysql_connect("localhost","username","password");
if (!$pilot_id)
  {
  die('Could not connect: ' . mysql_error());
  }
  mysql_select_db("cerulean_site", $pilot_id);
  $result = mysql_query("SELECT * FROM pilots ORDER BY pilot_id DESC");
  $row = mysql_fetch_assoc($result); // add this line
$pilot_id = $row['pilot_id'];
echo $pilot_id;
?>

 

Ken

Link to comment
https://forums.phpfreaks.com/topic/90096-solved-echoing-array/#findComment-461966
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.