Direktori : /home/rizant5/public_html_old/development/ |
Current File : /home/rizant5/public_html_old/development/rating-save-ajax.php |
<?php require_once("config.php"); $data=$conn->prepare("select * from rating where sample_id='".$_POST['sample_id']."' and email_id='".$_POST['rate_email']."'"); $data->execute();$row=$data->fetch(); if($row) $conn->exec("update rating SET rating='".$_POST['rating']."' where rat_id='".$row['rat_id']."'"); else $conn->exec("insert into rating (sample_id,email_id,rating) values ('".$_POST['sample_id']."','".$_POST['rate_email']."','".$_POST['rating']."')"); ?>