Answers for "php submit button without form"

PHP
0

php post variables to another page with submit button php

<html>
<form id="form" action="webAddressYouWantToRedirectTo.php" method="POST">
<input type="hidden" name="expectedPOSTVarNameOnTheOtherPage" value="<?php echo $varYouMadePreviouslyInProcessing ?>">
</form>
<script>
document.getElementById("form").submit();
</script>
</html>
Posted by: Guest on March-26-2020
0

How to Get Radio Button Value in PHP Without Submit

$('input[type=radio]').click(function(e) {
		
        var gender = $(this).val(); 
        $('.result').html(gender);
		
    });
Posted by: Guest on July-05-2020

Code answers related to "php submit button without form"

Browse Popular Code Answers by Language