Jump to content

Updating database via form


eMonk

Recommended Posts

<?php
$host="xxxx"; // Host name 
$username="xxxx"; // Mysql username 
$password="xxxx"; // Mysql password 
$db_name="xxxx"; // Database name 
$tbl_name="xxxx"; // Table name

// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
mysql_select_db("$db_name")or die("cannot select DB");

// get value of id that sent from address bar
$model_id=$_GET['model_id'];


// Retrieve data from database 
$sql="SELECT model_id, model_name, location, email_1 FROM $tbl_name WHERE model_id='$model_id'";
$result=mysql_query($sql);

$rows=mysql_fetch_array($result);
?>

<table width="400" border="0" cellspacing="1" cellpadding="0">
<tr>
<form name="form1" method="post" action="updated.php">
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td> </td>
<td colspan="3"><strong>Update data in mysql</strong> </td>
</tr>
<tr>
<td align="center"> </td>
<td align="center"> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr>
<td align="center"> </td>
<td align="center"><strong>Name</strong></td>
<td align="center"><strong>Location</strong></td>
<td align="center"><strong>Email</strong></td>
</tr>
<tr>
<td> </td>
<td align="center"><input name="name" type="text" id="name" value="<? echo $rows['model_name']; ?>"></td>
<td align="center"><input name="location" type="text" id="location" value="<? echo $rows['location']; ?>"></td>
<td><input name="email" type="text" id="email" value="<? echo $rows['email_1']; ?>"></td>
</tr>
<tr>
<td> </td>
<td><input name="id" type="hidden" id="id" value="<? echo $rows['model_id']; ?>"></td>
<td align="center"><input type="submit" name="Submit" value="Submit"></td>
<td> </td>
</tr>
</table>
</td>
</form>
</tr>
</table>

<?

// close connection 
mysql_close();

?>

 

This is the part that isn't working

 

<td align="center"><input name="name" type="text" id="name" value="<? echo $rows['model_name']; ?>"></td>
<td align="center"><input name="location" type="text" id="location" value="<? echo $rows['location']; ?>"></td>
<td><input name="email" type="text" id="email" value="<? echo $rows['email_1']; ?>"></td>

 

The echo values aren't being fetched and left blank when I run the script. Any ideas?

Link to comment
Share on other sites

You have no logic in there to see if the query succeeded or not.

 

$sql="SELECT model_id, model_name, location, email_1 FROM $tbl_name WHERE model_id='$model_id'";
if( !$result=mysql_query($sql) ) {
echo "<br>Query $sql<br>Failed with error: " . mysql_error() . '<br>';
}

$rows=mysql_fetch_array($result);

// etc . . . 

Link to comment
Share on other sites

Here's list.php that works. The code listed above is update.php.

 

<?php
$host="xxxxx"; // Host name 
$username="xxxxx"; // Mysql username 
$password="xxxxx"; // Mysql password 
$db_name="xxxxx"; // Database name 
$tbl_name="model"; // Table name

// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
mysql_select_db("$db_name")or die("cannot select DB");

$sql="SELECT model_id, model_name, location, email_1 FROM $tbl_name";
$result=mysql_query($sql);
?>
<table width="400" border="0" cellspacing="1" cellpadding="0">
<tr>
<td>
<table width="400" border="1" cellspacing="0" cellpadding="3">
<tr>
<td colspan="4"><strong>List data from mysql </strong> </td>
</tr>

<tr>
<td align="center"><strong>Name</strong></td>
<td align="center"><strong>Location</strong></td>
<td align="center"><strong>Email</strong></td>
<td align="center"><strong>Update</strong></td>
</tr>
<?php
while($rows=mysql_fetch_array($result)){
?>
<tr>
<td><?php echo $rows['model_name']; ?></td>
<td><?php echo $rows['location']; ?></td>
<td><?php echo $rows['email_1']; ?></td>

// link to update.php and send value of id 
<td align="center"><a href="update.php?id=<? echo $rows['model_id']; ?>">update</a></td>
</tr>
<?php
}
?>
</table>
</td>
</tr>
</table>
<?php
mysql_close();
?>

 

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.