soche123 Posted October 21, 2017 Share Posted October 21, 2017 hello friends, I'm making a website that will have daily news on sports, world affairs, national and other stuff. But I'm facing two problems right now. 1. How do I display a news article on a separate page? Do I have to create a new page for every headline on the index page?so when user clicks on the headline he is is located to the detail of that page address? How do I handle loading detail article? 2. Second problem I'm having is how do I manage information date wise?I mean sure I want current date data displayed on the index page but same time I want user to access the older data when they perform queries. Please help me. I'm a beginner and I don't have any idea how to do this. Quote Link to comment Share on other sites More sharing options...
archive Posted October 22, 2017 Share Posted October 22, 2017 Have you started learning the basics of HTML? Quote Link to comment Share on other sites More sharing options...
Solution cyberRobot Posted October 23, 2017 Solution Share Posted October 23, 2017 Have you looked into building dynamic (aka database-driven) websites with PHP and MySQL? Basically, the information that needs to be displayed on multiple pages, like your headlines, articles, etc., would be stored in a database (eg MySQL). Then you create whatever page scripts are needed to display the information. For example, you would have one script for the home page which would query the database to pull the newest headlines. Each headline could be a clickable link that passes the article ID to another page script designed to display the article details. The details script would pull the article information from the database using the passed ID. 1 Quote Link to comment Share on other sites More sharing options...
soche123 Posted October 25, 2017 Author Share Posted October 25, 2017 Have you looked into building dynamic (aka database-driven) websites with PHP and MySQL? Basically, the information that needs to be displayed on multiple pages, like your headlines, articles, etc., would be stored in a database (eg MySQL). Then you create whatever page scripts are needed to display the information. For example, you would have one script for the home page which would query the database to pull the newest headlines. Each headline could be a clickable link that passes the article ID to another page script designed to display the article details. The details script would pull the article information from the database using the passed ID. yeah that's what I'm doing. I'm using PHP and MySQL. but I'm bit confused with the database. How many tables should I have in my database? Since there so many sections in news like national, international, sports, entertainment, business. currently I have only two. One for categories and other for news which has all the title, description,category,details, image and date. Is it okay if I only use two tables? Quote Link to comment Share on other sites More sharing options...
rickshawboy Posted July 6, 2018 Share Posted July 6, 2018 1. Yes you do need a separate page. Its just better for SEO this way. 2. You can look into RSS feeds as well. If you use a CMS like Wordpress, they have a few plugins for what you are trying to accomplish as well. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.