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
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>";
}

Link to comment
Share on other sites

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.

 

 

Link to comment
Share on other sites

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.

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.