Hello everybody thanks for taking the time to look....
I need help with this statement below
$loc = "bio/";
$flocation = $loc.$ref;
'setting my directory to bio/(There ref#}
'I get a error when I try to do this If statement.
IF (Fopen($flocation,"r")) <!-- error here. what do i need to do? can anybody help with an example please? Thanks again Chris
{
$fp = fopen($flocation,"r");
if ($fp)
{
while (!feof($fp))
{
$order = fgets($fp, 100);
echo $order;
echo "<br />";
}fclose($fp);}