I have a variable, $id, which identifies the product category type to display on the page. I first need to check that the id variable has been set and if not, default the variable to category 0.
The code I have is as follows:
setdefault($id, 0);
function setdefault(&$var, $default="")
{
if (!isset($var))
{
$var = $default;
}
}
So with the address www.website.com/browse.php
, I would expect it to default to $id = 0
.
With the address www.website.com/browse.php?id=3
, I would expect it to set $id = 3
and display the relevant products.
However, despite setting $id
, it still defaults to 0
. Is there something obviously incorrect with my code?