Jump to content

automatically creating pages with folder names?


Recommended Posts

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.

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.