| Path : /var/www/html/smartcirqls.com/admin/ |
| Current File : //var/www/html/smartcirqls.com/admin/ajax-solution-domain-edit.php |
<?php
include('config/mysql_crud.php');
$db = new Database();
$db->connect();
$db->update('solution_domain_lists',array('solution_domain_name'=>$_POST['name'], 'solution_domain_url'=>htmlentities($_POST['url'],ENT_QUOTES))," id='".$_POST['id']."' ");
$rows = $db->getResult();
print_r($rows);
?>