I have a web server with PHP and I have a few files under certain folders I need to be able to select. The file names are in the format of "YYYY-MM-DD_XXXXXXX.php". Y stands for Year, M stands for month, D stands for date. What I need to do is make a dynamic drop down menu with the date for which there is certain file in the folder. For example. There are two files: 2013-01-01_xxxxx.php and 2013-01-07_xxxx.php, In this way there should be two options available in the drop down list which is "2013-01-01" and "2013-01-07". And once I choose one of them, correspond file will be displayed below in the webpage. I don't know how to make such drop down menu.
|
closed as not a real question by relentless, Andrew, middaparka, ewall, Troy Alford Jan 7 at 22:27
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
creates a drop down. Since you want it dynamically allocated values, you could do:
to dynamically create the menu by POSTing the selection to a page which will read from the file... painful. What I would do is use jQuery (specifically ajax) to read from the file. Lets say you have:
You use json_encode function to pass print (or echo) the results in your page. and your javascript would be something like this:
}); Here is a fairly decent tutorial: http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/ and http://www.9lessons.info/2010/08/dynamic-dependent-select-box-using.html and an example: http://jsfiddle.net/vjkaG/ and http://jsfiddle.net/g7wzT/1/ |
|||
|
|
