Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/09/2011, 12:58
marcwolf
 
Fecha de Ingreso: junio-2010
Mensajes: 353
Antigüedad: 13 años, 10 meses
Puntos: 6
Funcion php y mysql

Hola,

Mirad tengo la siguiente función:

Código PHP:
    function getCMS($id){
        
$q "select * from cms_data where id_cms=$id";
        
$rows LWUtils  :: SQLQuery($q3);
        
$a = array();
        foreach(
$rows as $v$a[$v["id_lang"]] = $v;            
        return 
$a;
    } 
no entiendo la siguiente linea

$rows = LWUtils :: SQLQuery($q, 3);

Grácias de antemano