I know how to create standard php files, but how would I add the ?blabla to the end of the url. IE my forum url looks like this
/index.php?act=home
How would I make it look like that?

Thanks

I got it the code I needed is

<?php
switch ($_GET["act"])
{
case "name":
header("Location:url");
break;
}
?>

Thanks anyway

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.