$(document).on('click', '#get', function(e){
e.preventDefault();
var $content = $('#content');
if($content.is(':visible')){
$content.hide();
}
else{
$.ajax({
url: "download.php",
cache: false,
beforeSend: function(){
$content.html('<img src="img/ajax_load.gif">');
},
success: function(html){
$content.html(html);
}
});
}
});
скрипт выводит только строку title в таблице news
SELECT title FROM news
$category_id = (int)arr_get($_GET, 'category', 1);
$id = (int)arr_get($_GET, 'id', 0);
function arr_get(array $array, $key, $default = null) {
return isset($array[$key]) ? $array[$key] : $default;
}