Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7976473
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:55:06+00:00 2026-06-04T08:55:06+00:00

I am coding my own Blog cms. In which i wants to code the

  • 0

I am coding my own Blog cms. In which i wants to code the following features.

Public Area:

1.Navigation Bar.

2.Posts on the index page which includes. Small post image then post title and post content of about 200 characters. Then a Read more button that will take the user to full post page.

Admin Area:

1.Posts CRUD (Create Read Update Delete).

2.General Information CRUD like Title Meta Keyowords and some other stuff.

What i can do from the above is:

1.I can grab the post content etc from the database .

  1. I can create the post CRUD.

The things i need help about are:
How i can create the full post page means when user clicks on Read More button or post title it will take the user to full post page. I don’t know how this whole things works.
Can you please explain how i can create this , how i will manage the database for this. It seems simple but i dont have any idea how i can do it.
If possible any example simple cms that has this feature (Not wordpress and others). Any tutorials on how to do this ?
Any help will be appreciated.
Thanks a lot
Jasminder

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T08:55:07+00:00Added an answer on June 4, 2026 at 8:55 am

    I believe you are looking for the term “CRUD” = Create, Read, Update, Delete. http://en.wikipedia.org/wiki/Create,_read,_update_and_delete

    How i can create the full post page means when user clicks on Read
    More button or post title it will take the user to full post page. I
    don’t know how this whole things works.

    It is actually quite simple. You would need to use $_GET to get some value that would associate to a certain post, for example if you have a table like:

    id title body created

    It would make sense to associate the post with id. Then you would have a file, let’s call it “read.php”
    In that file you need to get the $_GET value and then query for the post the id is associated with:

    Pseudo:

        <?php
    
        if (isset($_GET['id'])) {
         $id = $_GET['id']; //Make sure the value is of integer before continuing
    
         $query = mysql_query("SELECT id, title, body, created FROM posts WHERE id = $id");
    
         $row = mysql_fetch_assoc($query);
    
         //present the result
    
    
    echo "<h1>" . $row['title'] . "</h1>";
    echo "<div>" . $row['body'] . "</div>";
    
    //etc..
    
        }
    

    Remember to protect against with XSS. http://shiflett.org/articles/cross-site-scripting

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am coding an extension for eZPublish which has an own eZPersistantObject, so it
I'm expanding my php and general coding knowledge by writing my own 'simple' CMS
I'm currently coding my own CMS and I'm at the state of password... I
I am coding my own var_dump to meet certain requirements which probably only apply
Possible Duplicate: PHP session seemingly not working I'm currently coding my own CMS for
I want to start coding in Python or Ruby. Since I own a Lego
Im trying to implement my own Huffman Coding algorithm and the priority queue for
I have decided to start doing small coding projects on my own that focus
Well, I'm coding the OnPaint event for my own control and it is very
HI guys, We always in our projects implement our own custom login by coding

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.