clipbucket/upload/actions/edit_comment.php
2013-10-07 12:17:06 +00:00

20 lines
321 B
PHP

<?php
/**
* This file is used to update
* Comment
* Author : Arslan Hassan
* Since : 10 Aug, 2009
*/
require'../includes/admin_config.php';
$userquery->admin_login_check();
$cid = $_POST['id'];
$value = $_POST['value'];
$myquery->update_comment($cid,$value);
echo mysql_clean($value);
?>