Heya,
I have a form which posts to the same file, i enter some info, and print the vars, but nothing shows up:
This is the url:
http://10.0.0.1/php/login.php?Username=user&Website=website
both $Username and $Website are empty...
It is a fresh install on slackware 8.1, do i need to set something in ini files or so??
phpinfo(); works fine so php is correctly installed.. phpMyAdmin also works fine (adding / deleting databases etc etc) ....
// Default is user not authenticated
$error='';
// Check for valid user
if ((isset($Username)) && (isset($Website))) {
$error=1;
}
echo "Username: ".$Username."\nWebsite: ".$Website;
Some of my code...