Jump to content

[SOLVED] update database in specific id


djmelle

Recommended Posts

Hi!

 

I've made a script which gets posts from a database which needs to be accepted before it's put on the site. but when I try to update a post on the admin page I've made some kind of mistake since it always update the last id in the database thats need to be accepted and not the actual one you click on. here's the full code:

 

<?php include("header.php"); ?>

 

<?php if(isset($_POST['acc'])) {

$accid = $_POST['accid'];

 

$update=mysql_query("update fansaker set acc='1' where 'id'='$accid'");

 

}

?>

 

 

<?php

 

$adminsql=mysql_query("select * from fansaker where acc = 0 order by id");

 

print "<table border='0' width='400' cellspacing='0' cellpadding='0' align=center>";

 

print "<form name=acc' method='post' action='acc.php'>";

 

while($n1=mysql_fetch_array($adminsql)){

 

print "<tr><td><b>id:</b> <input type='hidden' name='accid' value='$n1[id]'>$n1[id]</td>";

 

print "<tr bgcolor=#f1f1f1><td colspan=2>$n1[comment] <b>FTML</b></td></tr>";

 

print "<tr><td><input type='submit' name='acc' value='accept'>

  <input type='submit' name='del' value='delete'></td></tr>";

 

 

}

 

print "</table>";

 

?>

 

 

any help would be appreciated!

Link to comment
https://forums.phpfreaks.com/topic/153859-solved-update-database-in-specific-id/
Share on other sites

hi, yep when I echo the id in the formular (the red) I have the right id

 

print "<tr><td><b>id:</b> <input type='hidden' name='accid' value='$n1[id]'>$n1[id]</td>";

 

but when I send it to update the script it always the last id, I've tried to echo here before updating the databas and it always gives me the last id...

1)  You don't need single quotes around 'id' in your query.

 

Change it to this and see if it makes a difference or outputs any errors.

 

 $update=mysql_query("update fansaker set acc='1' where id='$accid'") or die(mysql_error());

 

2)  You need to end your form.

 

3)  Like ober said, the value is not going to magically change from the form to the action script if that's your entire code.

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.