I am trying to post HTML from a Texter in a database. I have a form in which I have said "message". PHP code that processes it:
if (isset ($ _ POST ['submit']) {if (isset ($ _ POST ['title']) and isset $ _POST ['message'])) {$ title = $ _POST ['title']; $ Message = $ _POST ['message']; If (get_magic_quotes_gpc ()) {$ title = StripSash ($ title); $ Message = strip slash ($ message); } $ Title = mysql_real_escape_string ($ title); $ Message = mysql_real_escape_string ($ message); $ Q = "Include the table (title, date time, text) values ('{$ title}', now (), '{$ message}')"; $ Rows_profit = $ db- & gt; Exec ($ q); If ($ rows_ffected & gt; 0) {resonance " was done. } Else {echo "
The problem I am facing is retrieving it again and the new lines are and
& gt;
. Here's what I'm doing:
$ res = array (); $ Order = array ("\ r \ n", "\ n", "\ r"); $ Substitution = '& lt; Br / & gt; '; $ Q = "Select title, date time, text from table"; $ Res = $ db- & gt; Get_all ($ q); If ($ res) {foreach ($ result as $ RES) {$ result ['title'] = stripssash ($ result ['title']); $ Result ['text'] = str_replace ($ order, $ substitutes, stripslash ($ [[text ']' result of $); }} Echo "prefix"; Print_r ($ race); Echo "& lt; / pre & gt;"; I can not just get rid of those pesky \ r \ n
messages from $ order
$ order = array ("\\ r \\ n", "\\ n", "\\ r"); // and even $ order = array ("\\\ r \\\ n", "\\\ n", "\\\ r");
But does anything seem to work anyway?
if ($ res = $ db- & gt; get_all ('selection title, date Time, text from table ')) {foreach ($ RES & amp; $ result) {$ result [' text '] = nl2br ($ result [' text ']); }} Echo "prefix"; Print_r ($ race); Echo "& lt; / pre & gt;";
I have taken three things:
- Remove
striples
. They should not be there mysql_real_escape_string
added when the query is executed. - I used the function
nl2br
for new lines if it was already made by itself, then why write yourself? - I've added the
and
in $ result
foreach
> loop if I did not do it, then only modify shallow copies Done, do not own the variable There will be no change in this way.
Comments
Post a Comment