Jump to content

Need some help


blink359

Recommended Posts

But as long as you know the basics and know how to connect to the database and perform SQLs, then you're good to go. This code is a good beginner's project because it's really not hard.

 

Set up a database and a table. Give the table an "id" auto_increment field and a "news" field. You can add more later. You can do all this in phpMyAdmin if you want. Add some news entries.

 

In the file where you want to display news, connect to the database, select your table and run a SQL to grab the last 10 or so entries. (The last 10 would be the most recent. You can select them all if you want.) Then display them, most likely using a while loop.

Link to comment
https://forums.phpfreaks.com/topic/156627-need-some-help/#findComment-824760
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.