Ok so I have no problems making text input areas sticky if form validation failed. Where I am lost is on making a file field sticky. There is what I am using for my code currently:
<form enctype="multipart/form-data" action="index.php" method="post">
<p>Select File to be uploaded: <input type="file" name="upload" value="<?php if(isset($_POST['upload'])) echo $_POST['upload']; ?>" /></p>
<p>Name of Job Pic is from: <input type="text" name="jobname" size="25" maxlength="60" value="<?php if(isset($_POST['jobname'])) echo $_POST['jobname']; ?>" /></p>
<p>Name of Picture: <input type="text" name="picname" size="25" maxlength="60" value="<?php if(isset($_POST['picname'])) echo $_POST['picname']; ?>" /></p>
<input type="submit" name"submit" value="Upload It!" />
<input type="hidden" name="submitted" value="TRUE" />
</form>
Thanks for any help here!