problem number 1002
I'll give the relevant parts of the code
//$id has come from the last page using amend.php?Flaming+Burger
//using urlencode
$id = mysql_real_escape_string($id);
$sql2 = mysql_query("SELECT * FROM album where albumname='$id'");
// ...
<textarea rows="6" name="message" cols="47" class="input">BLAH BLAH</textarea>
// form submits
$jabber = $_POST[message];
mysql_query("INSERT INTO album2 (albumname, remarks) VALUES ('$id', '$jabber' )");
now if I echo $jabber and $id, I get what is expected, but the insert doesn't work
If I need to give any other information, then I can do that.
Thanks again!