RE: [PHP] using fwrite to create PHP files

2003-09-05 Thread Jay Blanchard
[snip] I wish to use fwrite() to create a small PHP file. So far, when I attempt to do this, php parses the contents of the file that fwrite needs to create. Eg, I have this: [/snip] Vince I did this \n"); fclose($newphp); ?> And it worked fine. fputs() places the string in the file properly. I

RE: [PHP] using fwrite to create PHP files

2003-09-05 Thread Chris Hubbard
Vince, You also need to escape the $, so instead of ." if ($_GET.. use ." if (\$_GET. You may have to escape the single quotes. I have written two pretty lame code generators. The first one did not use "templates", the second one does. You've got the lines of code in your "builder" scri

Re: [PHP] using fwrite to create PHP files

2003-09-05 Thread John W. Holmes
Vince LaMonica wrote: I wish to use fwrite() to create a small PHP file. So far, when I attempt to do this, php parses the contents of the file that fwrite needs to create. Eg, I have this: $new_id = mysql_insert_id(); // create brand new file $new_file = fopen("/var/www/html/$sitename/$submitted_

Re: [PHP] using fwrite to create PHP files

2003-09-05 Thread Chris Sherwood
this is a sample of what I do when I need to write a php file $stringtowrite = " > Vince LaMonica wrote: > > > I wish to use fwrite() to create a small PHP file. So far, when I attempt > > to do this, php parses the contents of the file that fwrite needs to > > create. Eg, I have this: > > > > $ne

RE: [PHP] using fwrite to create PHP files

2003-09-09 Thread Ford, Mike [LSS]
On 05 September 2003 19:44, Chris Sherwood wrote: > this is a sample of what I do when I need to write a php file > > $stringtowrite = " forum\n$"."ForumId=".$tabletofind.";\n"; > > $stringtowrite .= > "$"."ForumActive='1';\n$"."ForumName='".$sportname."';\n"; > > $stringtowrite .= "$".