korsygfhrtzangaiide
Elepffwdsff
/
home3
/
nmslyumy
/
www
/
odishaexpress
/
oe-admin
/
model
/
Upload FileeE
HOME
<?php class Updatehomepage { public function homeupdate() { $in=mysql_query("update its_homepge set its_title='".$_POST["title"]."',its_content='".$_POST["content"]."'"); if($in){ header("Location:home.php?page=home-page&umsg=utrue"); } else { $msg="Record Updation Error !!"; header("Location:home.php?page=home-page&msg=$msg"); } } public function gethome() { $rs=mysql_query("select * from its_homepge"); $val=mysql_fetch_array($rs); return $val; } } $ob=new Updatehomepage; if(isset($_POST["save"])) { $ob->homeupdate(); } $vul=$ob->gethome(); ?>