?
| Current Path : /home/webyoo/www/backup/allback/test_become/ |
| Current File : /home/webyoo/www/backup/allback/test_become/MyFunctions.php |
<?php
class MyFunctions {
private $db;
//constructor
function __construct() {
include_once './db.php';
// connecting to database
$this->db = new DBConnect();
$this->db->connect();
}
//Getting all users
public function getAllUsers($ville,$spe) {
$result = mysql_query("select * FROM users where recherche_ville = '$ville' and recherche_spe = '$spe' and type='pro'");
return $result;
}
}
?>