Hello Reader's!
If you are new to wordpress and looking for the method to insert form data into table, Then you can use the Wordpress liberary code to do that:-
<?php
global $wpdb;
$wpdb->insert('wp_custom_user',
array(
"username" => $_POST['username'],
"email" => $_POST['email'],
"password" => $_POST['password'],
"first_name" => $_POST['first_name'],
"last_name" => $_POST['last_name']
)
);
?>
0 Comment(s)