977 gün önce jQuery nextAll() fonksiyonu
sorusunu cevapladı.
$('.select-category'+id).select2({
dropdownParent: $('#selectCategoryModal'),
}).on('change', function () {
$(this).closest('div').nextAll('div').remove();
let id = $(this).val();
newCategory(id);
});
burada $(this).closest fonksiyonunu kullandım ve kendinden sonraki en yakın tüm div'leri kaldırdım.
1257 gün önce .htaccess kullanıcı profil
sorusunu cevapladı.
https://stackoverflow.com/questions/34981045/url-routing-with-php-and-htaccess/34981348
bu makale sana yardımcı olabilir
1257 gün önce Codeighter database db-debug hakkında
sorusunu cevapladı.
Müşteriye bu şekilde bir değişiklik yapmadan vermen gerekiyor.
Diğer durumda 'development' seçeneği senin genel olarak tüm sayfalarda gözükmeyen PHP hataların varsa bunlar görünecektir.
***Development (Localhost)***
<IfModule mod_env.c>
SetEnv CI_ENV development
</IfModule>
***Testing (Your Local Server)***
<IfModule mod_env.c>
SetEnv CI_ENV testing
</IfModule>
***Production (Remote Server)***
<IfModule mod_env.c>
SetEnv CI_ENV production
</IfModule>