POST method not working with button .. only if i set
<input type="submit">working ..
I trying to search on google but no result... my php project run on many cpanel without errors / Warnings but yesterday on fresh install cpanel i got this problem and can't solve it ..
<input type="submit">working ..
I trying to search on google but no result... my php project run on many cpanel without errors / Warnings but yesterday on fresh install cpanel i got this problem and can't solve it ..
Code:
<form role="form" method="post">
<div class="col-lg-3" style="margin-bottom: 10px;">
<button name="cash" valeu="0"
class="btn btn-info btn-sm btn-block">Button</button>
<input type="hidden" value="7" id="days" name="days">
</div>
</form>
<?php
if (isset($_POST['cash']))
{
echo 'Button Working';
}
?>
Last edited by a moderator: