wkdw1ll1ams Posted December 3, 2011 Share Posted December 3, 2011 just to clarify the site is like imdb, its not a pirate site for films. i thought this would be good to make to learn php. i have a bunch of folders in /films/ and the folders in there are all film names like /films/aliens/. how would i automatically create a php page for each folder and url would be like "localhost/films.php?id=12" trying to understand me here maybe hard, but i appreciate you trying. Link to comment https://forums.phpfreaks.com/topic/252394-automatically-creating-pages-with-folder-names/ Share on other sites More sharing options...
wkdw1ll1ams Posted December 3, 2011 Author Share Posted December 3, 2011 edit: i have this code: <?php $content = <<<EOL <head> </head> <body> New page </body> </html> EOL; $file = "page.php"; $open = fopen($file, "w"); fwrite($open, $content); fclose($open); ?> i could edit the $file to create a page for each film. Link to comment https://forums.phpfreaks.com/topic/252394-automatically-creating-pages-with-folder-names/#findComment-1294003 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.