05 August 2019

How to insert data into database via wordpress?

<?php
$name = $_POST['name'];
$email = $_POST['email'];

global $wpdb;
$table_name = $wpdb->prefix . "jaspreet";
$wpdb->insert($table_name, array('name' => $name, 'email' => $email) ); 

?> 

No comments:

Post a Comment

How to create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...