View Single Post
Old 07-24-2002, 11:15 PM   PM User | #5
Dalsor
New Coder

 
Join Date: Jul 2002
Location: Florida, USA
Posts: 96
Thanks: 0
Thanked 0 Times in 0 Posts
Dalsor is an unknown quantity at this point
To avoid the possibility I might have overlooked something small ( entirely possible ), I tried adding this into the index.php

PHP Code:
<?php
    $success 
= @include('arrays.php');
    if ( !
$success )
    {
        echo 
"Could not include the arrays file. Trying another method.";
    }
    
$again = @include('/home/aww/public_html/tm/arrays.php');
    if ( !
$again )
    {
        echo 
"Could not include the arrays file again.";
    }
    
$useroot = @include( $DOCUMENT_ROOT 'arrays.php');
    if ( !
$useroot )
    {
        echo 
"Tried using the doc root that time. No go.";
    }
?>
I received all three errors on page load.
Dalsor is offline   Reply With Quote