Jump to content

[SOLVED] Need help with an "edit button" on a html mysql table


nphls

Recommended Posts

Hi everyone.

 

So I have a table similiar to the one below. It is grabbing the data from a mySQL database.

 

ID    FirstName    LastName 

01    John            Doe1        Edit this record

02    John            Doe2        Edit this record

03    John            Doe3        Edit this record

 

When "Edit this record" is clicked, it should go to a different page (edit_record.php) where there is a form whose values would be from that specific record. The user would edit the info and then click a button to save the changes.

 

What I don't know how to do, is how to pass the ID, for example, of the the record to edit to "edit_record.php".

 

Cheers.  ;)

 

 

 

 

Link to comment
Share on other sites

<a href=/edit_record.php?id=$id>EDIT THIS RECORD</a>

 

just make $id whatever variable u use to populate the ID field in your initial table display.

 

then in the edit_record.php do:

 

$id=$_GET['id'];

 

$res=mysql_query("SELECT * FROM table WHERE `id`='$id'");

Link to comment
Share on other sites

Make sure you clean the id to protect from sql injection.

 

<a href=/edit_record.php?id=$id>EDIT THIS RECORD</a>

 

just make $id whatever variable u use to populate the ID field in your initial table display.

 

then in the edit_record.php do:

 

// MAKE SURE YOU CLEAN THE ID FIRST TO PROTECT FROM SQL INJECTION

$id= mysql_real_escape_string($_GET['id']);

 

$res=mysql_query("SELECT * FROM table WHERE `id`='$id'");

Link to comment
Share on other sites

ID    FirstName    LastName 

01    John            Doe1        Edit this record        Delete this record

02    John            Doe2        Edit this record        Delete this record

03    John            Doe3        Edit this record        Delete this record

 

I am now trying to add a "Delete this record" link. However, I don't think it would be a very good idea use a $_GET variable for this. But maybe I am wrong. How can I use a $_POST variable here? Or how can I do it differently?

 

Thanks

Link to comment
Share on other sites

You can use either, but i'm assuming that you have to have privilages to delete, ie logged in.

 

so do the same thing, <a href=/delete_file.php?id=$id>DELETE</a>

 

but then in delete_file.php do:

 


$check=$_SESSION['userlevel']; (or username if ur not using a pass or w/e ur using to show logged in

then,

either:

if (isset($check)){

//delete

}

or

if ($check=='99'){  //replace 99 with the admin level, or w/e level can delete

//delete

}

 

 

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.