in reply to Re: a simple web front end
in thread a simple web front end
Thank you, probably i needed assertion like yours from someone way more experienced than me.
So - from your classic app stack experience - is having frontend posting to itself, reloading page and act accordingly on postdata, an OK approach? Something like
print $q -> header(); if ($q -> param) { # we do have something to process, lets move on do_process($q -> param); } else { # this is clean entry, just display options show_page_with_form($q); } # despite of previous step's outcome, show footer with copylefts and e +nd document gracefully show_footer($q); print $q -> end_html; 1
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: a simple web front end
by hippo (Archbishop) on Oct 28, 2020 at 09:40 UTC |