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