Apply for Zend Framework Certification Training

Jquery



< Post Entry Redirect in jquery >



Step-1 Create database jquery
Step-2 Create table country
CREATE TABLE `country` (
  `country_id` int(11) NOT NULL,
  `country_name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Step-3 Insert some data in country table
INSERT INTO `country` (`country_id`, `country_name`) VALUES
(1, 'Bharat'),
(6, 'south');
 
Step-4 Create index.php
index.php
 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="text/javascript">
     $(function() {
         $(".delete").click(function(){
                 var element = $(this);
                 var del_id = element.attr("id");
                 var info = 'id=' + del_id;
                 if(confirm("Are you sure you want to delete this?")){
                      $.ajax({
                           type: "POST",
                           url: "delete.php",
                           data: info,
                           success: function(){
 
                           }
                        });
                       $(this).parents(".show")
                        .animate({ backgroundColor: "#003" }, "slow")
                        .animate({ opacity: "hide" }, "slow");
                   }
                    return false;
           });
});
</script>
<style type="text/css">
  .show{
             height: 50px;
             width: 200px;
             border-radius: 5px;
    }
  .name{
            height: 50px;
            width: 100px;
            border-radius: 5px;
            float: left;
   }
  .action{
            height: 50px;
            width: 100px;
            border-radius: 5px;
             float: left;
    }
 
</style>
<div class="container">
<?php
           mysql_connect("localhost","root","");
           mysql_select_db("jquery");
           $result = mysql_query('SELECT * FROM country');
            while($row = mysql_fetch_array($result)){
                  $id1=$row['country_id'];
                  $name=$row['country_name'];
            ?>
            <div class="show">
                <span class="name"><?php echo $name;  ?></span>
                <span class="action"><a href="#" id="<?php echo $id1; ?>" class="delete" title="Delete">X</a></span>
            </div>
            <?php
}
?> 
</div>     
 
 
 
Step-5 Create a delete.php
delete.php
 
<?php
        mysql_connect("localhost","root","");
        mysql_select_db("jquery");
        $id =  $_POST['id'];
        mysql_query('delete FROM country where country_id ='.$id);
        
 ?>                     

< Post Entry Redirect in jquery >



Ask a question



  • Question:
    {{questionlistdata.blog_question_description}}
    • Answer:
      {{answer.blog_answer_description  }}
    Replay to Question


Back to Top