Wednesday, November 21, 2018

Delete data using core php ?


<?php
 if(isset($_REQUEST['del_id']))
 {
    $del=$_REQUEST['del_id'];
     $de="delete from user where uid='$del'";
    $ex=mysql_query($del);     header("location:view.php");
 }


?>
< html>
< body>
<form method="post" name="form1" >
< table width="200" align="center" class="frm_tbl">
  <tr>
    <td>Uid</td>
    <td>Name</td>
    <td>Password</td>
    <td>Gender</td>
    <td>Hobby</td>
  </tr>
<?php
while($r = mysql_fetch_array($ex))
{
?>
  <tr>
     <td><?php echo $r['uid']; ?></td>
    <td><?php echo $r['name']; ?></td>
    <td><?php echo $r['password']; ?></td>
    <td><?php echo $r['Gender']; ?></td>
    <td><?php echo $r['Hobby']; ?></td>
  <td><a href="view.php?del_id=<?php echo $r['uid']; ?>">delete</td>
  </tr>
<?php
}
?>
< /table>
</form>



Related Posts:

  • PHP Case Sensitivity PHP Case Sensitivity In PHP, all keywords (e.g. if, else, while, echo, etc.), classes, functions, and user-defined functions are NOT case-sensitive. In the example below, all three echo statements below are legal (and … Read More
  • MySql Quaries You can create and populate the example table with these statements: CREATE TABLE shop ( article INT(4) UNSIGNED ZEROFILL DEFAULT '0000' NOT NULL, dealer CHAR(20) DEFAULT '' NOT NULL, p… Read More
  • PHP Error Types - And their Differences Notices : It will be shown in below condition like if we will try to access a variable which is not defined yet. it will not stop script execution. Warning : It will be shown while using include(), it will not a… Read More
  • OOP PHP Login Tutorial   What is a PHP Secure Login System with Registration? Many applications need to register and authenticate users. Some users have developed their own packages for this purpose, others have used existing p… Read More
  • How can insert the data in mysql using php? step 1:- Firstly create a database name & secondly create a table in MySQL. step 2:-After that create a table structure eg. Column Name1 , Coulmn Name2 , Coulmn NameN... <?php mysql_connect("localhost","root"… Read More

0 comments:

Post a Comment