Jump to content

TEXTAREA field. Keeping newlines, but keep input to DB safe


eirika

Recommended Posts

Hi,

 

PHP newbie here, and my first post.

I am in the process of learning PHP. Currently I am looking at forms and DB input.

 

I would like to verify if my current method of keeping the linebreaks from a TEXTAREA field, and still keep the DB input safe is correct.

I use the following code to get the input from the TEXTAREA field.

 $comments = mysql_real_escape_string(nl2br(filter_var($_POST["comments"], FILTER_SANITIZE_STRING)));

Is this the correct way of handling this?

 

Thanks

Link to comment
Share on other sites

Hi,

 

PHP newbie here, and my first post.

I am in the process of learning PHP. Currently I am looking at forms and DB input.

 

I would like to verify if my current method of keeping the linebreaks from a TEXTAREA field, and still keep the DB input safe is correct.

I use the following code to get the input from the TEXTAREA field.

 $comments = mysql_real_escape_string(nl2br(filter_var($_POST["comments"], FILTER_SANITIZE_STRING)));

Is this the correct way of handling this?

 

Thanks

it is recommended to use nl2br() to output data from your db, not on insertion, as mentioned.

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.