RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9-_/]+)$ index.php [QSA]
.htaccess dosyasındaki yönlendirmeden kaynaklanıyor olabilir.
$routeExplode = explode('?', $_SERVER['REQUEST_URI']);
$route = array_values(array_filter(explode('/', $routeExplode[0])));
print_r($route);
body deki ögelere z-index: -1; vermek yerine navbar a z-index: 1; veya daha üstü bir değer verin
setInterval(function(){
setTimeout(function() { $("#hideDiv").fadeOut(0); }, 3500)
setTimeout(function() { $("#hideDiv2").fadeIn(0); }, 3500)
setTimeout(function() { $("#hideDiv2").fadeOut(0); }, 7000)
setTimeout(function() { $("#hideDiv3").fadeIn(0); }, 7000)
setTimeout(function() { $("#hideDiv3").fadeOut(0); }, 10500)
setTimeout(function() { $("#hideDiv").fadeIn(0); }, 10500)
;},10500);
ilk başlangıçta 10.5 sn bekliyor ama sonrasında 3.5 sn ara ile tek tek gözüküyor.
Ctrl + F5 veya Shift + F5 ile siteyi yenile
$metin= $this->kategoriler_model->kategoriadi($category);
buradan gelen veriyi yazdır , varmı yokmu
şuradada 2 değişkende aynı isimde daha önce hiç böyle kullanmadım oda sıkıntı çıkarıyor olabilir.
foreach ($category as $category ) {
$output .= '<option value="' . $c['CatID'] . '" '. $c['CatID'] == $kat['CatParID'] ? 'selected' : '' .'>' . $indent . $c['KategoriAdi'] . '</option>';
hatta bunu direk o satıra yaz
$c['CatID'] == $kat['CatParID'] ? 'selected' : ''
bunu oraya yaz.
http://www.erbilen.net/ternary-uclu-operator-kullanimi-php/
tinymce.init({
selector: 'textarea.editor',
plugins: 'print preview searchreplace autolink directionality visualblocks visualchars fullscreen image link media template codesample table charmap hr pagebreak nonbreaking anchor toc insertdatetime advlist lists textcolor wordcount imagetools contextmenu colorpicker textpattern help',
toolbar1: 'formatselect | bold italic strikethrough forecolor backcolor | link | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat',
});
tinymce sayfada başlattığın yerde plugins: yazan yerden kullanmak istemediğin eklentilerin isimlerini sil.
echo explode(',',$metin);
explode ile böldüğünde veriyi array olarak verir echo ile yazdırdığındandır.print_r() ile yazdır veya tekrar foreach kullan.
$mtn = explode(',',$metin);
foreach($mtn as $text){
echo $text;
}