Url gibi bir şey olduğu Hey guys, benim site için kullanıcı profilleri oluşturmak için çalışıyorum
mysite.com / user / ChrisSalij
Şu anda benim denetleyicisi böylece benziyor:
<?php
class User extends Controller {
function user(){
parent::Controller();
}
function index(){
$data['username'] = $this->uri->segment(2);
if($data['username'] == FALSE) {
/*load default profile page*/
} else {
/*access the database and get info for $data['username']*/
/*Load profile page with said info*/
}//End of Else
}//End of function
}//End of Class
?>
Ben gitmek her anda ben bir 404 hata alıyorum;
mysite.com / user / ChrisSalij
I think this is because it is expecting there to be a method called ChrisSalij. Though I'm sure I'm misusing the $this->uri->segment(); command too :P
Any help would be appreciated. Thanks