Skip to content
Advertisement

PHP MYSQL Displaying the same data from table to another page

JavaScript

Asset Approval List is a table with lots of row of data and a button, after clicking the button, it will link to Asset Approval Form. I would like to fetch the data from the same row in Asset Approval List to my Asset Approval Form. The data in the table of Asset Approval List is fetched from mysql phpmyadmin. Any idea how to link the same data to Asset Approval Form?

This is my Asset Approval List This is my Asset Approval List

This is my Asset Approval Form

This is my Asset Approval Form

Advertisement

Answer

Assuming there’s a unique ID column in the table, you should include that in the call to approval():

JavaScript

Then change approval() to include the ID in the URL.

JavaScript

And AddAssetApproval.php should use $_GET['serial'] to display the appropriate approval form for that serial number.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement