Ребят, доброго времени суток) У меня такая проблема((
GET параметр типа: kvartiry-ot-podryadchika
Так GET не выводит никак.
Не выводится из-за "тире" ?
static public function get_data($cont){
global $perfix,$db;
if($_GET['page']==""){$_GET['page']=" ";}
if($_GET['cat_id']!=''){
$content = $db->prepare("select * from `".$perfix.self::catalog."` where `url`=?");
$content->execute(array($_GET['cat_id']));
$row = $content->fetch();
}else{
$content = $db->prepare("select * from `".$perfix.self::page."` where `url`=?");
$content->execute(array($_GET['page']));
$row = $content->fetch();
}
return $row[$cont];
}