J
JRough
Sorry, I just fixed the form and tried to remove my other post. I
fixed the form so it only has one field. That is the <textarea> #q </
textarea> and my database subtitutes the #q for a serialized list I
want posted by the form. Then php will set $q = $_POST['q']; The
problem is the value doesn't seem to get posted. I tried the
document.write as a way to test for the value but I don't think that
is right. I would like to make the <textarea> </textarea> field a
hidden field. HOw can I hide it? But let me know if you see why it
isn't getting posted? It might be something else but since the field
isn't hidden I do see the serialized list in the "textarea" field and
as far as I can see it isn't getting posted.
tia,
<html>
<body onload=”document.forms[’pgform’].submit()”>
<form name=”pgform” action=”http://99.20.131.64/pooglemap2.php”
method=”post”>
<textarea name=”q” value= “hidden”>
#q
</textarea>
<script type =”text/javascript”>
document.write(q);
</script>
</form>
</body>
</html>
fixed the form so it only has one field. That is the <textarea> #q </
textarea> and my database subtitutes the #q for a serialized list I
want posted by the form. Then php will set $q = $_POST['q']; The
problem is the value doesn't seem to get posted. I tried the
document.write as a way to test for the value but I don't think that
is right. I would like to make the <textarea> </textarea> field a
hidden field. HOw can I hide it? But let me know if you see why it
isn't getting posted? It might be something else but since the field
isn't hidden I do see the serialized list in the "textarea" field and
as far as I can see it isn't getting posted.
tia,
<html>
<body onload=”document.forms[’pgform’].submit()”>
<form name=”pgform” action=”http://99.20.131.64/pooglemap2.php”
method=”post”>
<textarea name=”q” value= “hidden”>
#q
</textarea>
<script type =”text/javascript”>
document.write(q);
</script>
</form>
</body>
</html>