So I'm trying to make a page similar to this one. http://freestreamtube(dot)net If you use a url such as http://freestreamtube(dot)net/?file=Watch Spongebob Online the page title and some of the text on the page changes dynamically. You can put anything you like after the file= and it changes. How do I do something like this?
try this <?php $title = $_GET['file']; ?> <html> <head> <title><?php echo $title ?></title> </head> <body> Your content here </body> </html> PHP: