I know i posted this topic before but I searched and I cannot find my first post. anyway I didnt repond to my last post because I went out of town for a week and I could not access a computer to respond. Here is the general info if you missed it. I installed php4,apache,mysql on a 233mhz computer running debian linux. I try to execute this code
<?php
session_start();
$link_id = mysql_connect("localhost", "bob", "fred");
mysql_select_db("DB_nac98476") or die(mysql_error());
$sql = "SELECT news_id,news_title,news_author,news_date,news_desc FROM news ORDER BY news_id DESC LIMIT 3";
$result = mysql_query($sql) or die(mysql_error());
?>
and I get this error
Warning: Failed opening '/var/www/index2.php' for inclusion (include_path='.:/usr/share/pear') in Unknown on line 0
I have no clue whats wrong...did I forget to install something?
Thanks
-Frank