Jump to content

Not php code, PHP CREATIVE IDEAS


TheFilmGod

Recommended Posts

Hey, I was hoping someone can give me some ideas to create a php feature.

 

I'm making a site for the school's student council. They want me to make a dynamic thing where there is a date and time of the next meeting on the homepage. I was hoping if anyone has a creative idea of doing this. PHP - wise.

 

Should I make a table in mysql, with a row for each date and have php check the time and the next meeting to be shown?

 

How would YOU, as a developer go around doing this? General idea and basic php method would be helpulf.

 

Thanks!  ;D ;D ;D

Link to comment
https://forums.phpfreaks.com/topic/68902-not-php-code-php-creative-ideas/
Share on other sites

Should I make a table in mysql, with a row for each date and have php check the time and the next meeting to be shown?

 

I'm not really sure how else you'd go about doing it.

 

meetings

id | datetime | name | description | notes

 

SELECT datetime, name, description FROM meetings ORDER BY datetime DESC LIMIT 1

 

Then you just give them an admin page to add, edit, and delete entries.  A general page to view all meetings that have occurred along with their notes would be helpful.

 

I'm not really sure what you were looking for as an answer.

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.