You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
160 B
10 lines
160 B
<?php
|
|
include 'model.php';
|
|
|
|
$id1= $_POST['user1'];
|
|
$id2= $_POST['user2'];
|
|
$obj= new Model();
|
|
|
|
$result= $obj->getChats($id1,$id2);
|
|
echo json_encode($result);
|
|
?>
|