Jump to content

escaping fwrite data?


Monkuar

Recommended Posts

do we need to escape data that is entered into fwrite into a file?

 

my code:

 

$fh = @fopen('terms.html', 'wb');
fwrite($fh, ''.$_POST['Post'].'');
fclose($fh);

 

simple terms of service here, should i do mysql_real_escape_String and other sanitizing options or is it fine? will it ever result in an error if someone injecting malicious code?

 

Link to comment
https://forums.phpfreaks.com/topic/268601-escaping-fwrite-data/
Share on other sites

Since it's a HTML file, you should use htmlspecialchars (), unless you want to allow HTML markup to be written to the file.

But again, as Adam said: Output escaping depends upon the system you're outputting content to, and whether or not you want the content to be perceived as pure data or as syntax.

 

As for mysql_real_escape_string (): Ask yourself if you are going to save the file in a MySQL database.

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.