Pagina PHP
Código PHP:
$get_last_saved_category_id = new LasSavedCatId();
clase:
Código PHP:
class LasSavedCatId{//hh
function __construct() { //lw
$this->Las_Saved_Cat_Id();
}//lw
protected function Las_Saved_Cat_Id() {//kl
$sQuery= "SELECT *
FROM saved_category
Order by s_cat_id DESC";
echo "<br>".$sQuery;
$rsDatos = mysql_query ($sQuery)
or die ("Error geting room").mysql_error();
$Datos = mysql_fetch_array($rsDatos);
$get_last_id = $Datos['s_cat_id'];
}//kl
}//hh
Pero cuando quiero usar lo que me devuelve me dice que no
puede convertirlo a string este objeto..
swolo quisiera requerir esa id y pasarsela a otro objeto que lo necesita
Mil gracias espero haber sido mas claro.