Jump to content

jgmiddel

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jgmiddel's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. "you can easily..." I'm a beginner and really do not know how to write a query wich the wanted result. Any help would be appriciated.
  2. 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.
  3. 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)
×
×
  • 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.