Do you see something wrong in this insertion??
It does not work for me..
$insSubm = "INSERT INTO cR_Submissions memberID ='".$memberID."', RefNumb='".$RefNumb."', title ='".$title."', CopyRightNumb='".$copyRightNumbWork."', type='".$natureTypeWork."', OtherTitle='".$alternateTitleWork."', OwnershipTransfer='".$textareaPrior."', Status ='".$status."', DateWhen='".$todaydate."', Time='".$NowisTime."'";
$resultinsSubm=mysql_query($insSubm) or die("Error insert Submissions: ".mysql_error());
Am I blind?
Please help
Thanks
That’s invalid SQL syntax. The SQL syntax is:
An alternative MySQL syntax for this is:
You’re missing the
SETkeyword. Check out theINSERTSyntax documentation for more about this.