adamwhiles Posted May 3, 2010 Share Posted May 3, 2010 I have a site that the purpose is for users to be able to submit php code for others to see or help with whatever. I am currently inserting the actual code into a mysql, I know this is not secure but I'm looking for the best way to do this. All I need it to do is store the php code, then be able to view that code w/ highlighting etc. on another page. It works for the most part as is right now, just looking for a better option than storing in a database. Also, it seems like that when the code is pulled back out of mysql the formatting(indents) are a little off, any suggestions there? BTW, this site is not live so I don't have any examples to show you. It just runs privately on my local test machine. Quote Link to comment https://forums.phpfreaks.com/topic/200586-storing-actualy-php-code/ Share on other sites More sharing options...
JAY6390 Posted May 3, 2010 Share Posted May 3, 2010 When inserting it into the database, save it after running it through htmlentities() Quote Link to comment https://forums.phpfreaks.com/topic/200586-storing-actualy-php-code/#findComment-1052552 Share on other sites More sharing options...
roopurt18 Posted May 3, 2010 Share Posted May 3, 2010 I don't see any reason why storing PHP code in MySQL is not secure. If you're storing the programming code in MySQL, then make sure you call mysql_real_escape_string() on the code before inserting it into the database. When you pull the code to display in a browser, just make sure you call htmlentities() before echo'ing it. To fix the spacing, place it within < pre> and </ pre> tags (without spaces of course). Quote Link to comment https://forums.phpfreaks.com/topic/200586-storing-actualy-php-code/#findComment-1052554 Share on other sites More sharing options...
ignace Posted May 3, 2010 Share Posted May 3, 2010 just make sure you call htmlentities() before echo'ing it Otherwise your PHP will not be displayed but will show up in the HTML source. PHP code is harmless until you include- or eval it. Quote Link to comment https://forums.phpfreaks.com/topic/200586-storing-actualy-php-code/#findComment-1052602 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.