Jump to content

Minor textarea annoyance.


DavidGS

Recommended Posts

OK, so I have a form with a textarea and submit button. I made a simple PHP program which gets the form data and writes it to a database. Works perfectly, information always gets stored without hassle. However, whenever I submit something with an apostrophe ('), it won't write it to the database. It refreshes the page and whichever changes I make that included the apostrophe in it would get removed, like they were never there.

 

The form code:

 

print "<form>\n";
print "<textarea name='text' cols='80' rows='5'>$text</textarea><br><br>\n";
print "<input type='SUBMIT' value='Update'>\n";
print "</form>\n";

 

The post code:

 

if ($_POST['text'])
	{
		$textupdated = $_POST['text'];
		mysql_query("UPDATE profile_content SET text='$textupdated' ") or die(mysql_error());
                }

 

The $text variable is from an array:

 

$qry = mysql_query("SELECT * FROM profile_content");
$contents = mysql_fetch_array($qry);

$text= $array['text'];

 

Link to comment
https://forums.phpfreaks.com/topic/91841-minor-textarea-annoyance/
Share on other sites

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.