i cant remember for the life of me how to do this or what its called so ill explain it as best i can.
what i need to do is figure out how to setup index.php?p=blah if anyone knows how please let me know
Archived topic from AOV, old topic ID:3864, old post ID:24898
need some help
- Red Squirrel
- Posts: 29209
- Joined: Wed Dec 18, 2002 12:14 am
- Location: Northern Ontario
- Contact:
need some help
in your php script you access the variables like this:
$_GET['variable']
So index.php?variable=test
would make $_GET['variable'] equal to test.
Works the same way with form fields, but you use $_POST instead.
Archived topic from AOV, old topic ID:3864, old post ID:24899
$_GET['variable']
So index.php?variable=test
would make $_GET['variable'] equal to test.
Works the same way with form fields, but you use $_POST instead.
Archived topic from AOV, old topic ID:3864, old post ID:24899
Honk if you love Jesus, text if you want to meet Him!
need some help
so
like this then right
Archived topic from AOV, old topic ID:3864, old post ID:24900
Code: Select all
<?
if ($_GET[task] == 'login') {
include ('login.php');
}
?>
Archived topic from AOV, old topic ID:3864, old post ID:24900