Plugin form unable to process

You missed name attribute of <input type="submit" value="<?php _e('Submit'); ?>"/> HTML tag.

i.e.

It should be looks like: <input type="submit" name="Submit" value="<?php _e('Submit'); ?>"/>

Else, You have to change if condition inside function form_processing()

OLD:
if(isset($_POST[‘Submit’])){

Replace with:
if(isset($_POST[‘rollNumber’])){

Hope this will helps you.

Leave a Comment