Código PHP:
public function consulta($consulta) {
$this->total_consultas++;
$resultado = mysql_query($consulta,$this->conexion);
if(!$resultado) {
echo 'MySQL Error: ' . mysql_error();
exit;
}
return $resultado;
} function pasajeDatos() {
$db = new ConexionDb();
$cliente = new Cliente();
$consulta = $db->consulta("SELECT DISTINCT id,title FROM tabla;");
if($db->num_rows($consulta)>0) {
while($resultados = $db->fetch_array($consulta)) {
$cliente ->setId($resultados['id']);
$cliente ->setNombre($resultados['title']);
// $l->
}//$resultados['nombre']
} return $cliente;
} <?php
include_once("../model/ClienteService.php");
include_once("../model/Cliente.php");
$ClienteSvc = new ClienteService();
$abc = $ClienteSvc -> pasajeDatos() -> getNombre();
$nombre = array($abc );
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<?php
foreach ($nombre as $n){
echo $n;
}
?>
</body>
</html> 1.
public function pasajeDatos()
2.
{
3.
/* */
4.
$clientes = array();
5.
while($result = $db->fetch_array($consulta)) {
6.
$cliente = new Cliente();
7.
$cliente->setId($result['id']);
8.
$clientes[] = $cliente;
9.
}
10.
11.
return $clientes;
12.
}