Jump to content

help changing and deleting rows


cs1h

Recommended Posts

Hi,

 

I made a form that lets people change their data on a online form or delete it but its not working. Can anyone see why the forms arn't working. They say that the it has worked but nothing has been changed or deleted.

 

The changing code is

<?php

$email=$_POST['Email']; 
$name=$_POST['name']; 
$title=$_POST['title']; 
$id=$_POST['hiddenField'];
$Abs=$_POST['message']; 
$Art=$_POST['messagetwo']; 

include "dog.php";

mysql_connect($server, $db_user, $db_pass) or die (mysql_error()); 
mysql_select_db("$database") or die(mysql_error()) ; 

mysql_query("UPDATE $table1 SET Title = '$email'
WHERE id = '$id'");

mysql_query("UPDATE $table1 SET Title = '$name'
WHERE id = '$id'");

mysql_query("UPDATE $table1 SET Title = '$title'
WHERE id = '$id'");

mysql_query("UPDATE $table1 SET Abstract = '$Abs'
WHERE id = '$id'");

mysql_query("UPDATE $table1 SET Article = '$Art'
WHERE id = '$id'");

echo "Changes made to $title.<br /> <a href='arteditor.php'>Click here</a> to return to the admin home.";

?>

 

The deletion code is

<?php

$id=$_POST['hiddenField'];

include "dog.php";

mysql_connect($server, $db_user, $db_pass) or die (mysql_error()); 
mysql_select_db("$database") or die(mysql_error()) ;

$sql = "DELETE FROM $table1 WHERE id = '$id'";
$result = mysql_query($sql);
echo "Deletion made to $title.<br /> <a href='arteditor.php'>Click here</a> to return to the admin home.";

?>

 

Can anyone help?

 

Thanks

Colin

 

 

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.