You have to make sure you name the url variable the correct
name when you make the recordset, the name of the db column will be
used by default, when you made the link you named the variable like
this 'yourpage.php?YOURVARIABLE=' when you make the recordset be
sure to type in YOURVARIABLE into the textfield next to the drop
down where you selected 'URL Paramter'
Here is some code to check if the get variable is numeric and
then assign it to a variable- $validtopic, then you can use the
variable to filter the recordset, if you are using the advanced
button when making the recordset.
if(isset($_GET['id']) == TRUE) {
if(is_numeric($_GET['id']) == FALSE) {
header ("Location: " . $config_dir . "index.php");
} else {
$validtopic = $_GET['id'];
}