Jump to content

Can't get retreived data to display in form


crmamx

Recommended Posts

I was told that I could retreive a db record and the fields would display in a form, which I could subsequently change and then update the db. If I am going about it the right way I just can't get the data to display. The echo appears to show I am getting a record.

 

form4_change_airplane.php

<html> 
<head></head>
<body> 

<?php // Connect to database=====================================================

include("connect_db.php");
$table1='passwords';
$table2='airplanes';
$amano="940276";
$id="1";

// sending query ===========================================================

$result = mysql_query("SELECT * FROM $table2
WHERE id='$id'") or die(mysql_error());  

if (!$result) {
    die("Query to show fields from table failed");
}

$num_rows = mysql_num_rows($result);
echo "$num_rows";

?>

<form action="display1_airplanes.php" method="post"> 
ID #: <input type="text" name="id" size="6">
AMA #: <input name="ama" type="text" size="6"><br>
Model Name: <input name="model_name" type="text" size="30"><br>
Model Mfg: <input name="model_mfg" type="text" size="30"><br>
Wingspan: <input name="wingspan" type="text" size="6"><br>
Engine: <input name="engine" type="text" size="30"><br>
Decibels: <input name="decibels" type="text" size="6"><br>

<input type="submit" value="Send"> 
</form> 
</body> 
</html> 

 

 

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.