Hi I am passing the id parameter through the url, however i want to add a piece of code that permits me to assign a default id value if no value has been passed in the url. how can i do this?
<?php $id=$_GET['id']; ?> // what i have
If that is null then $id=25; // what i want