I am puttting following code in text area (which is nothing but you-tube embed code
<iframe width="425" height="349" src="http://www.youtube.com/embed/wDPZuRLIV70" frameborder="0" allowfullscreen></iframe>
When submit is clicked
it gives error (image attached)
You dont have permission to acccess xxx.php
xxx.php is nothing but the program file
My insert script is as follow
$insert=sprintf("INSERT INTO youtube( id, status, srno, name, detail , code )
VALUES ('', %s, %s, %s, %s , %s )",
GetSQLValueString($POST["status"], "int"),
GetSQLValueString($POST["srno"], "int"),
GetSQLValueString(addslashes($POST["name"]), "text"),
GetSQLValueString(addslashes($POST["detail"]), "text"),
GetSQLValueString(addslashes($_POST["code"]), "text"));
which works (Inser quesry) alright
in case
i enter normal text like "abcd "
insted of
<iframe width="425" height="349" src="http://www.youtube.com/embed/wDPZuRLIV70" frameborder="0" allowfullscreen></iframe>
refer page for error
please help