I went back to the old version for now and it works. Please let me know if you correct this. Thanks
Clearing cache did not help but I found more. It is ok in Chrome. It does what I said before in Edge. In Internet Explorer it is just blank.
Here is a link. You have t to log in.
user name: temp_test
password: Ultimate2020$$
url https://kempocorner.ussdstudents.com/student-resources/
I disabled all plugins except this one and the problem does not go away. This is the code I am using.
function create_competitor(){
if (isset($_POST[‘ncheck’])){
$userdata = array(
‘user_login’ => ‘bobbilly’,
‘user_url’ => ‘xxxxx’,
‘user_pass’ => NULL,
‘first_name’ => ‘bob’,
‘last_name’ => ‘billy’,
);
$user_id = wp_insert_user( $userdata ) ;
}
?>
<form method=”post”>
<input type=”hidden” name=”ncheck”>
<input type=”submit” name=”submitnew” value=”Save This Student” id=”submitnew”/>
</form>
<?
}