OK, next question... Are you certain your host is PHP enabled?
I can see the:
<?php
if(isset($GET['view'])) { # make sure we have a variable
if(file_exists($GET['view'].'txt')) { # make sure file exists
require_once($GET['view'].'txt');
}
else {
echo $GET['view'].' does not exist';
}
}
?>
in the source, whereas, I shouldn't be able to if the page is parsed properly...
Oh, wait... I see now, that your webhost is an ASP host, and doesn't mention anything in their packages about PHP. Those are two different server side scripting languages... You need to either get a PHP host, or find an ASP forum for your learning needs... (BTW, the <% %> works fine on an ASP page, but the PHP in your page isn't even being parsed, since your host is ASP and not PHP enabled...)