Posts

Showing posts with the label how to update using php

view,edit and delete using PHP & Mysql

Image
view,edit and delete using PHP & Mysql In this tutorial i will discuss how to do view,edit and delete using PHP & Mysql. In this code for viewing the data from database i.e Mysql i am using HTML table.First data will be configured into the HTML table from there data will be deleted and edited/Updated. So lets check the tutorial on view,edit and delete using PHP & Mysql part by part. So lets see the code for view from database ,save this php file as viewstudent.php /*In this tutorial edit and delete script will be interlinked with the view page*/ <?php $con=mysqli_connect("localhost","root","","youtube"); $query="select * from registration"; $sql=mysqli_query($con,$query); ?> <title>View Example</title> <p align="center">View Of Registration Details</p> <hr/> <table width="1264" height="150"  border="1" align="center...