Jump to content

How to create php files from a script.


Orionsbelter

Recommended Posts

hi i'm trying to create a php file from a script but i dont seem to be getting it right the file doesn't exist already am trying to create it.

 

<title>test</title> <?php 
include_once"includes/db_connect.php";

$sql=mysql_query("SELECT `urlName` FROM `products` WHERE `category`='1'");
while($fetch=mysql_fetch_object($sql)){
$File = "".$fetch->urlName.".php"; 
$handle = fopen($File, 'w');
fclose($handle);
}
?>

Link to comment
Share on other sites

Forget the idea. You have the wrong solution to your problem.

 

Look into something called URL rewriting instead. It's a process that turns URLs like "big-blue-chair.php" into ones like "showproduct.php?product=big-blue-chair". No silly nonsense of creating PHP actual files.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.