Jump to content

php 404 isset help


mrooks1984

Recommended Posts

Hello all, i am hoping someone can help me.

 

i have some code i have been working on and i am trying to add a 404 page if it cant find the page, i know it will be some sort of if statment, but with me been pretty much a noob at php i am stuck.

 

heres the code that the page calls.

 

function get_content() {

	//Get page name from browser if none call it home
	$page = (isset($_GET['page'])) ? $_GET['page'] : 'home';

	//Get The Page Content
	$sql = "SELECT * FROM content WHERE page = '$page'";
	$res = mysql_query($sql) or die (mysql_error());
	while($row = mysql_fetch_assoc($res)){

		//Show The Page Content
		echo '<h1>' . $row['title'] . '</h1>';
		echo $row['body'];
	}
}

 

thanks all.

Link to comment
https://forums.phpfreaks.com/topic/249445-php-404-isset-help/
Share on other sites

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.