Jump to content

Error in query when updating data with a ' apostraphy


portabletelly

Recommended Posts

Hi, I have a php page which reads in data from a form and updates a mysql colum. Seems to work fine except if the text contains an ' letter then the mysql query spits out die('Error, this didnt work').

 

Im not sure if the error is because im reading in $text_area_to_update = htmlspecialchars($_POST['text_area']); the text from the form wronge or if its an issue with my $query = "UPDATE customer_site_notes SET text_area='".$text_area_to_update."' WHERE id='".$cust_id."'";

 

As its a text field talking about a customers site I kind of need to be able to store all these characters.

`~!@#$%^&*()[];:'"<>?/.|}{|1234567890 as well as the alphabet.

 

include("connect.php");
include("selectdb.php");

//Define variables from post
$text_area_to_update = htmlspecialchars($_POST['text_area']);
$cust_id = htmlspecialchars($_POST['hidden_id']);
$update = htmlspecialchars($_POST['update']);
//Define SQL query to make

//$query = "INSERT INTO customer_site_notes (text_area, id) VALUES ('".$text_area_to_update."', '".$cust_id."')";
//mysql_query($query) or die('Error, insert query failed');
//mysql_close($link);

$query = "UPDATE customer_site_notes SET text_area='".$text_area_to_update."' WHERE id='".$cust_id."'";
mysql_query($query) or die('Error, this didnt work');
mysql_close($link);

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.