Jump to content

Updating values in MYSQL


jgmiddel

Recommended Posts

With this script I (hopefully) created a start for making a form to update the information in my database. What i'm trying is to make a form wich can update all the values.

 

<?php

include "connect.php";

$query = "SELECT * FROM `prices`";

$sql = mysql_query($query) or die ( mysql_error( ) );

$aantal = mysql_num_rows($sql);

echo"<table cellspacing=\"3\" width=\"100%\" border=\"0\">";

while($record = mysql_fetch_object($sql)){

echo"<tr><td>".$record->description."</td><td>€ <input type=\"text\" class=\"formfields\" name=\"".$record->id."\" size=\"6\" value=\"".$record->price."\"></td></tr>";

}

echo"</table><p><input type=\"submit\" value=\"Send\" name=\"B1\" class=\"formfields\"></form>";

?>

<p>

 

The next step is to post the values to the database: it is a new php-file:

 

<?

while($record = mysql_fetch_object($sql)){

echo '<input type="text" name="price[]" size="6" value="'.$record->price.'">';

echo '<input type="hidden" name="id[]" value="'.$record->id.'">';

}

echo "<pre>";

print_r($_POST);

foreach ($_POST[prijs] as $key=>$value)

{

echo ($_POST[id[$key]] - $value <br>);

}

?>

 

Someone helped me with the last part, but there is an error on the last line. Who can help me (just a beginner)

 

Link to comment
https://forums.phpfreaks.com/topic/3194-updating-values-in-mysql/
Share on other sites

First, helping is always easier if you provide us with the actual error message, not just say that "there's an error"

 

Second, your code looks pretty confusing. You are talking about updating, but it's nowhere to be seen. Your 'new php file' has some form elements with no clue etc...

 

Try this, and maybe things will open up a bit

foreach ($_POST as $key=>$value)
{
echo "$key - $value <br>";
}

Hi,

 

Thanks for your respons. I changed my code, but I don't know how to make a query for updating the database.

 

This is the page with the form. It's OK, I guess.

 

<?php

include "connect.php";

$query = "SELECT * FROM `prijzen`";

$sql = mysql_query($query) or die ( mysql_error( ) );

echo"<form method=\"POST\" action=\"test3.php\">" ;

echo"<table cellspacing=\"3\" width=\"100%\" border=\"0\">";

while($record = mysql_fetch_object($sql)){

echo"<tr><td>".$record->omschrijving."</td><td>€ <input type=\"text\" class=\"formfields\" name=\"".$record->id."\" size=\"6\" value=\"".$record->prijs."\"></td></tr>";

}

echo"</table><p><input type=\"submit\" value=\"Verzenden\" name=\"B1\" class=\"formfields\"></form>";

?>

 

In another file there must be query for updating the database and the new values must be confirmed on the screen:

 

<?

while($record = mysql_fetch_object($sql)){

echo '<input type="text" name="prijs[]" size="6" value="'.$record->prijs.'">';

echo '<input type="hidden" name="id[]" value="'.$record->id.'">';

}

echo "<pre>";

print_r($_POST);

foreach ($_POST[prijs] as $key=>$value)

{

echo "$_POST[id][$key] - $value <br>";

}

?>

 

If is better to do it all in one file, please let me know.

 

Thanks for helping, I really do not know how to get further.

 

 

You need an UPDATE query like the following:

 

UPDATE `prijzen` SET field1='value1', field2='value2', ..... WHERE id = 'record_id';

 

Since you have all of the fields in the $_POST hash, you should have no problem constucting this query. If you can't figure it out, there are literally hundreds of tutorials out there. Good luck.

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.