the code i gave you will do just that, using mysql.
$POST['id'] will hold an array of the checkboxes that were selected, and each of their values will correspond with a value in the database. The query
SELECT * FROM your_table WHERE id IN ('" . implode("','", $_POST['id']) . "')
will pull all of the information from each of the rows corresponding to the id's (or checkboxes) selected by your user.
So if they selected 1, 3, and 5, you will have a mysql results holding all of the information for those three rows. Then to display, you use mysql_fetch_assoc and print $row['Paragraph'] or $row['whatever'] to display the information to them.
Unless I'm missing something, isn't that how you want this to work?