Jump to content

if id is not set how do I say SET ID equal to ...


futrose

Recommended Posts

I'm trying to set up my home page so that when the server loads index.php it that loads home.php but all the information for home.php is stored in the database under ID 13.  So how can I say at the top of my home page that if

if (!isset($_GET['id']))
{
$id == 13;
}

(this doesn't seem to work)

so that all my variables are populated with the information for the home page?

Thanks.

Make a change to it . . . Sorry, this should take of the undefined index warning.

 

if( empty($_GET['id']) || intval($_GET['id']) < 1 ) {

    $id = 13;

} else {

    $id = (int) $_GET['id'];

}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.