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? 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 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 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++; } 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. 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
Archived
This topic is now archived and is closed to further replies.