I'm using a html form to pass variables from one page to another like -
<form action='abc.php' method='post'>
<input type='text' name='name' value='sayma'>
</form>
its working fine. But he problem is when i use -
<form action='abc.php' method='post' enctype='mulipart/form-data'>
<input type='text' name='name' value='sayma'>
</form>
is not working. finally i found the problem is that the 'nctype=multipart/form-data'. If i use form without this script is working fine but when i use this script is not working. I think i able to make u the problem. Help me please.