I am leaning Codeigniter from few days and I am wondering to create blog on Codeigniter but two question are coming from my mind.
1. How to create SEO Friendly URL just like WordPress is using
.
2. How to get page content after navigate to that URL
.
I have created table tbl_post
where I am storing post details and table structure are:
1. ID
2. Title
3. Content
4. Tags
5. Status
6. Create Time
7. Update Time
8. Author ID
9. Status
Now I want to create dynamic post URL from above table.
For example: http://www.example.com/hello-world/
And after navigate to above URL, How to get content of hello-world post?
You have notice that I have not passed any ID to example URL to get content. Any suggestion, If I pass ID and don't want to show in URL string?
That's It.
I will thankful If you guide me to the proper way.
Thanks.
Code Review
Home Page (List view of my blog posts)
Home Controller:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller {
public function index()
{
$this->load->model("HomeModel"); // Load home model
$data['postData'] = $this->HomeModel->postData(); // Get posts data from postData function
$this->load->view("global_header"); // Include header area
$this->load->view("home", $data);
$this->load->view("global_footer"); // Include footer area
}
}
Home Model:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class HomeModel extends CI_Model{
public function postData()
{
$this->db->select('tbl_post.*, tbl_user.first_name, tbl_user.last_name');
$this->db->from('tbl_post');
$this->db->join('tbl_user', 'tbl_post.author_id = tbl_user.id', 'Left Join');
$query = $this->db->get();
return $query->result();
}
}
Home View
<?php for($i=0; $i<count($postData); $i++): ?>
<?php
$postID = $postData[$i]->id;
$postTitle = $postData[$i]->title;
?>
<a href="<?php echo base_url("$postID/$postTitle"); ?>">
<h2 class="post-title">
<?php echo $postTitle; ?>
</h2>
</a>
</div>
<hr>
<?php endfor; ?>
Now my URL looks like this: http://example.com/1/man-must-explore-and-this-is-exploration-at-its-greatest
Domain: http://example.com
ID: 1
Title: man-must-explore-and-this-is-exploration-at-its-greatest
I have created another view(post)
to display post content with post ID(ID fetch from URL).
Am I going right way? Need your suggestion to improve my logic.