Search found 4 matches
- Sat Jan 26, 2019 1:00 pm
- Forum: Web Design and Development
- Topic: Show confirmation box after clicking a HTML link <a>
- Replies: 2
- Views: 607006
- Mood:
Show confirmation box after clicking a HTML link <a>
i want to display a pop up for my dashboard when a user click delete link.
Code: Select all
<a href="page.php?action=delete&id=$id">Delete</a>
- Sat Jan 26, 2019 12:53 pm
- Forum: Web Design and Development
- Topic: Get data from MySQL database using id in url
- Replies: 3
- Views: 664050
- Mood:
Re: Get data from MySQL database using id in url
Thanks a lot it worked for me
- Sat Jan 26, 2019 12:52 pm
- Forum: Web Design and Development
- Topic: Click HTML link and delete data from MySQL database using PHP
- Replies: 4
- Views: 737153
- Mood:
Click HTML link and delete data from MySQL database using PHP
i have a table in my web page which displays all the info from mysql database and i want to provide delete link to delete info from database
Code: Select all
<a href="page.php?action=delete&id=$id">Delete</a>
- Sat Jan 19, 2019 1:15 pm
- Forum: Web Design and Development
- Topic: Get data from MySQL database using id in url
- Replies: 3
- Views: 664050
- Mood:
Get data from MySQL database using id in url
I'm trying to pull data from MySQL database using ID in the URL like site/order.php?id=24 <?php error_reporting(E_ALL); ini_set('display_errors', 1); $servername = "localhost"; $username = "xxxx"; $password = "xxxxxx"; $db_name = "xxxxxxxxx"; // Create connection $conn = new mysqli($servername, $use...