// All rights reserved. This script is part of PHPWCMS. The PHPWCMS web content management system is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. The GNU General Public License can be found at http://www.gnu.org/copyleft/gpl.html A copy is found in the textfile GPL.txt and important notices to the license from the author is found in LICENSE.txt distributed with these scripts. This script is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This copyright notice MUST APPEAR in all copies of the script! *************************************************************************************/ // retrieve the list of entries from online form // first some settings // replacement tag $_form_entries['RT'] = '{FORM_RESULT_LISTING}'; // insert the ID of the content part here $_form_entries['FORM_ID'] = 270; // which form fields should be listed - comma separated $_form_entries['FIELDS'] = 'vorname,name,email'; // now some template settings // Header - put in the header section here $_form_entries['HEADER'] = ' '; // Footer - put in the footer section here $_form_entries['FOOTER'] = '
Vorname Name E-Mail
'; // Spacer - his is placed between each line of entries $_form_entries['SPACER'] = ' '; $_form_entries['ENTRY'] = ' {vorname} {name} {email} '; ////////// Do not change below ////////////////////////////// if(strpos($content['all'], $_form_entries['RT']) !== false) { $_form_entries['RESULT'] = array(); $_form_entries['ALL'] = _dbQuery("SELECT * FROM ".DB_PREPEND.'phpwcms_formresult WHERE formresult_pid='.intval($_form_entries['FORM_ID'])); $_form_entries['FIELDS'] = convertStringToArray($_form_entries['FIELDS']); $_form_entries['SELECT'] = array(); $_form_entries['ENTRIES'] = array(); foreach($_form_entries['FIELDS'] as $_form_entries_value) { $_form_entries['SELECT'][$_form_entries_value] = $_form_entries_value; } $_fc = 0; foreach($_form_entries['ALL'] as $_form_entries_value) { $_form_entries['ENTRIES'][$_fc] = $_form_entries['ENTRY']; $_form_entries_value = @unserialize($_form_entries_value['formresult_content']); foreach($_form_entries_value as $_form_entries_key => $_form_entries_value1) { if(isset($_form_entries['SELECT'][$_form_entries_key])) { $_form_entries['ENTRIES'][$_fc] = str_replace('{'.$_form_entries_key.'}', html_specialchars($_form_entries_value1), $_form_entries['ENTRIES'][$_fc]); } } $_fc++; } if(count($_form_entries['ENTRIES'])) { $content['all'] = str_replace( $_form_entries['RT'], $_form_entries['HEADER']. implode($_form_entries['SPACER'], $_form_entries['ENTRIES']), $content['all']). $_form_entries['FOOTER']; } else { $content['all'] = str_replace($_form_entries['RT'], '', $content['all']); } } ?>