1. <?php $array = get_cforms_entries(); /* all data, no filters */
  2.  
  3. echo '<table>';
  4. echo '<tr><th>Proformers</th><th>Venue</th><th>Date of Show</th><th>Poster</th></tr>';
  5. foreach( $array as $e ){
  6. echo '<tr><td>' . $e['data']['Name of Proformers'] . '</td><td>' . $e['data']['Venue'] . '</td>
  7. <td>' . $e['data']['Date of Show'] . '</td><td><img width=200 class="aligncenter"
  8. src="http://YOUR UPLOAD FOLDER' . $e['data']['Photo[*2]'] . '" alt="" /></td><tr>';
  9. }
  10. echo '</table>'; ?>