I have this conventional submit button which submit a form like this:
<form method="post" id="form_submit">
...
<input class="button" type="submit" name="Submit" value="Submit">
</form>
And I check if the submit button is clicked using this:
if(isset($_POST['Submit'])){
//update DB
}
Now I have a submit link using jquery:
<a href="#" onclick="publish(); return false;">Submit</a>
JS code:
$("#form_submit").submit();
What is the alternative way here to be used here for if(isset($_POST['Submit']))
since I'm submitting the form using javascript?