Jump to content

Help with PHP fwrite!!


xengvang

Recommended Posts

I need to have fwrite to keep the $ variables and write it over to the new file.

 

For example, fwrite is going to write this "$hot=111". On the document it writes to, it tries to find a variable value for $hot which there is none, so it writes this on the new document, "=111". I need it to write this on the new document "$hot=111". So I want fwrite to write all $ variables over to the next document. So what ever is in the $content should be exactly what is written over to the new file. Is this possible? Here is my code below:

<?


$parent = "$_GET[test]";
$fn = "test-$parent.php";


$content = "<?
if (isset($_GET[category])){
$child = $_GET[category];
include_once('http://www.test-site.com/test-category.php?parent=Movies&category=$_GET[category]&link=test-site.php');

}else{

include_once('http://www.test-site.com/test-category.php?parent=Movies&link=test-site.php');
}
?>";
$fp = fopen($fn,"w") or die ("Error opening file in write mode!");
fputs($fp,$content);
fclose($fp) or die ("Error closing file!");

echo "completed";
?>

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.