Hi there,
I am trying to Fetch a row from my mysql table. But there comes an error,
Notice: Undefined index: page_content in d:\hosting\envogue\design1\index.php on line 93
What exactly does this mean?
And here is the source code:
<?php
error_reporting(E_ALL);
include "database.php";
db_connect('envogue_db');
mysql_select_db('envogue_db');
$result = mysql_query("SELECT `page_id` , `page_name` , `page_content` , `page_url` FROM `content` WHERE `page_id` = '$id' ");
$row = mysql_fetch_row($result);
echo $row["page_content"];
?>
I've been trying for hours to fix this and I'm pretty sure its very simple but I'm to thick to realiseπ
Thanks for your help!
π π