Hi Dears
i developed a personal blog system.
i use an HTML editor. its content must save on MySql data base.
i send it like this:
$body=trim($_POST['text']);
...
$query = "INSERT into $tblname values ('0', '$title', '$body', '$author', '$idcat', '$time')" or die(mysql_error());
...
is it a professional way and is it OK?
thanks.