Hi
Take a look here
http://dev.noumenaut.com/testme.php
this is the html source of the form
<body>
<form name="form1" method="post" action="testscript.php" enctype="multipart/form-data">
<input name="testtext" type="text" value="type some text in me to echo" size="35">
<input type="submit" name="Submit" value="Submit">
</form>
</body>
Note the enctype="multipart/form-data" tag - now if i remove it the form works. It calls a script called testscript.php and echos the text entered in the form - HOWEVER with enctype="multipart/form-data"> included no data is passed to my script and nothing gets printed out.
What is wrong - ive tried a lot of things you can see the phpinfo by going here
http://dev.noumenaut.com/phptest.php
I need to be able to include this tag since my forum uses it everywhere and at the moment its out of operation - please HELP !!
Thanks
Matt