PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
$query_update="UPDATE $_POST[table] SET image_filename='$image_filename' WHERE id=$_POST[id]";
if($result=mysql_query($query_update)){
echo"$query - Success!";
}
When I run this 'Success' is out put to my screen indicating that the query has been sucessful, yet when I check the MYSQL table the update has not been made. I don't understand how this could be possible - any ideas?