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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.