Still green in php but I'm liking it. Anyways...
I have a table that retrieves information from my db which gets its data from a date search, so I want it to be retrieved in another table after being filtered.
I tried a couple of things including passing the variable that is being used in filtering it (date) into another window so that the table retrieves this information there with id as date from previous page.
On my search page i have this:
<?php
$tester = $_POST['Date'];
mysql_select_db($database_dbconnkk, $dbconnkk);
$query_equ = "SELECT * FROM daily_reports WHERE Date = '$tester' ORDER BY id ASC";
?>
And a table that repeats the same which is working. I have a link that opens window to this page with an attempt to retrieve data from previous test.
<?php
$tester2 = $_Get['Date'];
Also tried passing Date as id:
(id=<?php echo $row_equ['Date']; ?>)