i hope i catch someone who's been following my struggles w/ this hodge podge event scheduler app...
i'm coming down the stretch, so to speak. i've got a lot of the separate things settled that i need for my main "date entry" form. due to the several data items which need to be collected by this form, i've decided to try using includes, which i've found isn't that tricky at all really.
however, one of my includes needs itself to parse it's own little form data to result in the final entry to be submitted in the "date entry" form. perhaps doing this particular bit as an "include" is NOT the best option?
i was considering having a java pop-up a separate window so the data parsing include form (of date info, using mktime() to get a timestamp) could do its thing and get that timestamp data-- but how do i tell the original form-- the bigger picture form-- to record this newly parsed data? in other words, this form w/in a form is grabbing a timestamp for me-- how do i ensure that the new timestamp becomes that which is included by the include, instead of the timestamp parser form itself?
i can show you examples-- the "date entry " form is here (not fully functional), and that which is replacing the "show date" text input entry as an include on the "date entry" form, the timestamp parser, is here. (NOTE: timestamp parser "feedback" is NOT part of the larger file, in case that is not obvious if you look at it. it is of course not the actual file being accessed by the "concert date" form, but merely shown as an example of what data is being parsed by that include)
EDIT: i uploaded the new "Date Entry" file, so what you see at the first link above actually has my "included" version of the "timestamp parser" shown in the bottom right, listed as "show date"
Edit2: I populated my Artist Table w/ my test data so it doesn't look like that part is broken! those 6 drop-downs are an include, so at least that part works! 😉