I solved the problem I forgot to specify a name Tם Form to get value The problem was solved works fine
before
<form id="myFRm"> <input name="img1" type="file" id="img1"> <input type="submit" name="submit" id="submit" value="Submit"> </form>
after
<form id="myFRm" name="myFRm"> <input name="img1" type="file" id="img1"> <input type="submit" name="submit" id="submit" value="Submit"> </form> |
|
|