vote up 0 vote down star
<?php

if (isset($_POST['post'])) {

// sanitize variables
$title = mysql_real_escape_string(trim($_POST['title']));
$text = mysql_real_escape_string(trim($_POST['text']));

if (strlen($title) > 3) {

mysql_query("INSERT INTO msgs (title, text, date)
           VALUES('$title', '$text', '".time()."')");
header('location:  msg.php?id='.mysql_insert_id().'');
exit;

}

else {

echo '<h2>Errors</h2><p style="color: maroon">> Fields title and text must consist more than 3     characters.</span>';

}


}

?>

Is this safe to use? Have i forgot something? Just making sure before i make this public.

flag

3 Answers

vote up 4 vote down

You aren't checking the length of `text'.

What happens if mysql_real_escape_string returns FALSE?

What if the insert fails? Shouldn't you check that before assuming you get an insert id?

link|flag
vote up 2 vote down

I would:

a) Add a call strip_tags() if HTML is disallowed;
b) Add a call to htmlentities() if HTML is allowed.

link|flag
vote up 1 vote down

Another thing you could add would be to check that the data received are sent from your form on your domain. Some clever chaps out there could create their own form and post to your script.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.