Ok I'm trying just to grab the info in a file text box but it adds \ to it look:
echo '<form enctype=\"multipart/form-data\" method="POST" action="FamilyEdit.php?set=True">';
echo "
<p>
Please specify an image:<br>
";
echo '<input type="file" name="datafile">'; echo"
</p>
so this works but when I have them push the submit button a file like c:\file.jpg will turn into c:\file.jpg....... does anyone have any idias..... I've allready tried stripslashes() and addslashes() ..... I guess I'm trying to avoid having to write a parser function to remove the "\"
ANy thought would be great thanks