wpdb object is calling ajax but not inserting data into the database – WordPress
I am using the WordPrewss $wpdb class to insert data into the database. The ajax part works fine but it's not addin the data into the database. <script> $("#notes_maker").submit(function(){ event.preventDefault(); var formURL = "<?php echo admin_url('admin-ajax.php')?>"; var notes_editor = $("#notes_area").val();…