[size=10pt]I am making a table and filling his column by databse’s value like name, date, time etc and using checkbox. column may be multiple. checkbox’s value is ID from database. Now when select checkbox or multiple checkbox and click on the submit button all data like name, date, time etc or another page. On another page i have to show all the data. not in textbox. [/size]
Use a hidden field for passing information. It would be something like
<input type=‘hidden’ name=‘id’ value=’<?=$row['id']?>’ />
from there, follow the first answer in here - http://stackoverflow.com/questions/4997252/get-post-from-multiple-checkboxes