I have created a form with a textarea and a submit button.
Within a text area i put some thing like this
<script language="javascript" src="
http://somesite.com/abc/myfile.php"></script>
now my form is some thing like this
<form name="form1" method="post">
<textarea name="abc">
<script language="javascript" src="
http://somesite.com/abc/myfile.php"></script>
</textarea>
<input type="submit" value="submit"/>
</form>
then i submit the form.
I write the code $abc=$_POST[’abc’];
echo $abc;
it must be inserting an script at echo position.
but the value i got is blank.
when i tried any other text its working fine.
What is the problem and how to rectify it.