-
Notifications
You must be signed in to change notification settings - Fork 2
saturngod edited this page Feb 12, 2012
·
1 revision
#IO
$this->db->library("io");
//?sample=hihi;
$xss_clean=false; // it's optional
echo $this->io->get("sample",$xss_clean); // will see hihi
//POST sample=hihi;
$xss_clean=false;
echo $this->io->post("sample",$xss_clean); // will see hihi
//PUT sample=hihi;
$xss_clean=false;
echo $this->io->put("sample",$xss_clean); // will see hihi
//DELETE sample=hihi;
$xss_clean=false;
echo $this->io->delete("sample",$xss_clean); // will see hihi
//Content-Type
echo $this->io->header("Content-Type");
//POST sample=hi&place=test
echo $this->io->request_body;
echo $this->io->method; // GET , POST , DELETE, PUT