Merhaba,
Php'de link/kullaniciadi şeklinde profil sayfası nasıl yapabilirim?
Örnek proje yada makale var mı türkçe?
Şimdiden teşekkürler
Php'de link/kullaniciadi Şeklinde Profil Sayfası Nasıl Yaplır? |
9 Mesajlar | 1.175 Okunma |
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ kullanici.php?kullaniciadi=$1 [L]
case 'kullanici-profil.php':
include 'page/kullanici-profil.php';
break;
$sayfa= $_GET['username'];
switch ($sayfa) {
case 'kullanici-profil':
require_once('page/kullanici-profil.php');
break;
case 'kullanici-grup':
require_once('page/kullanici-grup.php');
break;
default:
require_once('page/404.php');
}
$sayfa= $_GET['username'];
switch ($sayfa) {
case 'kullanici-profil':
require_once('page/kullanici-profil.php');
break;
case 'kullanici-grup':
require_once('page/kullanici-grup.php');
break;
default:
require_once('page/404.php');
}