orangge Posted October 11, 2009 Share Posted October 11, 2009 I'm very new to php. I need to generate monthly report in tabular format. For example, i have a drop down list with option A, B and C. By select the option, it will create monthly report in table format from Jan - Dec. Below is how is the layout of the output i need to generate: How to generate the monthly report without write the same code again? Quote Link to comment https://forums.phpfreaks.com/topic/177313-generate-monthly-report-in-table-format/ Share on other sites More sharing options...
sasa Posted October 11, 2009 Share Posted October 11, 2009 use loop Quote Link to comment https://forums.phpfreaks.com/topic/177313-generate-monthly-report-in-table-format/#findComment-934922 Share on other sites More sharing options...
orangge Posted October 11, 2009 Author Share Posted October 11, 2009 use loop Could you give me some idea on how to do it? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/177313-generate-monthly-report-in-table-format/#findComment-934931 Share on other sites More sharing options...
mattal999 Posted October 11, 2009 Share Posted October 11, 2009 $i = 1; $totalrows = 3; while($i < $totalrows) { echo "CODE FOR EACH ROW"; $i++; } Quote Link to comment https://forums.phpfreaks.com/topic/177313-generate-monthly-report-in-table-format/#findComment-934932 Share on other sites More sharing options...
orangge Posted October 11, 2009 Author Share Posted October 11, 2009 $i = 1; $totalrows = 3; while($i < $totalrows) { echo "CODE FOR EACH ROW"; $i++; } i would like to know how to generate the table frm Jan - Dec based on what i selected from the drop-down list as the code to generate the table will be most likely to be the same and just the heading will be different. How can i use the loop to generate the table without hard code it. For example, if i selected option 1, it will display the table from Jan - Dec. Quote Link to comment https://forums.phpfreaks.com/topic/177313-generate-monthly-report-in-table-format/#findComment-934940 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.