Answers for "signup Using codegniter in ajax"

0

signup Using codegniter in ajax

<?php
class Crud_model extends CI_Model 
{
	function saverecords($name,$email,$phone,$city)
	{
		$query="INSERT INTO `crud`( `name`, `email`, `phone`, `city`) 
		VALUES ('$name','$email','$phone','$city')";
		$this->db->query($query);
	}
}
Posted by: Guest on March-10-2021
0

signup Using codegniter in ajax

<?php
class Crud_model extends CI_Model 
{
	function saverecords($name,$email,$phone,$city)
	{
		$query="INSERT INTO `crud`( `name`, `email`, `phone`, `city`) 
		VALUES ('$name','$email','$phone','$city')";
		$this->db->query($query);
	}
}
Posted by: Guest on March-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language