29 Mart 2019 Cuma

Bootstrap 4 navbar menu sağa sola yaslamak


If you want to align brand to your left and all the navbar-items to right, change the default mr-auto to ml-auto
<ul class="navbar-nav ml-auto">

10 Şubat 2019 Pazar

Raspberry apache php mysql kurulumu


Apache: 


Kurulum
sudo apt-get install apache2 -y

Dosya listesi
cd /var/www/html
ls -al

Server restart
sudo service apache2 restart

Php: 

Kurulum
sudo apt-get install php libapache2-mod-php -y

Apache default index sil
sudo rm index.html

Index.php yarat
sudo leafpad index.php

Mysql:

Kurulum
sudo apt-get install mysql-server php-mysql -y

Server restart
sudo service apache2 restart