Hallo
Ich muss eine Umfrage starten, als Vorlage habe ich ein Fertiges Skript genommen
So nun mein Problem, es sollten mehrere sachen ausgewäshlt werden können.
Wie mach ich das
Bitte helft mir
mfg Kevin
Ich muss eine Umfrage starten, als Vorlage habe ich ein Fertiges Skript genommen
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Umfrage CCC-Boilies Süß</title>
<!-- Evtl. weitere Kopfinformationen -->
</head>
<body background="http://kevinkaupert.ke.funpic.de/Umfrage%20CCC/PHTO0004klein.jpg" text="#990000" link="#0000CC" vlink="#000066" alink="#000000">
<?php
/*****************************************************
** Title........: Configuration File
** Filename.....: config.php
** Author.......: Ralf Stadtaus
** Homepage.....: http://www.stadtaus.com/
** Contact......: http://www.stadtaus.com/forum/
** Notes........: This file contains the configuration
*****************************************************/
/*****************************************************
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY
** OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
** LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
** FITNESS FOR A PARTICULAR PURPOSE AND
** NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
** COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
** OR OTHER LIABILITY, WHETHER IN AN ACTION OF
** CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
** OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
** OTHER DEALINGS IN THE SOFTWARE.
**
*****************************************************/
/*****************************************************
** Script configuration - for the documentation of
** following variables please take a look at the
** documentation file in folder 'docu'.
*****************************************************/
$vote_title = 'Was???';
$vote_text = 'Was Für Zutaten sollen in den Boilie?';
$vote_option[] = '3-4';
$vote_option[] = '4-5';
$vote_option[] = '5-6';
$vote_option[] = '6-7';
$vote_option[] = 'mehr wie 7';
$intern_vote_name = 'operating_system';
$form_field_type = 'radio'; // (radio, select, readio_image)
$bar_image_name = 'silver.gif';
$max_bar_width = '200'; // (pixel)
$check_ip_address = 'yes'; // (yes/no)
$check_cookie = 'no';
$language = 'de'; // See folder "languages"
$path['templates'] = './templates/';
$path['logfiles'] = './logfiles/';
$tmpl['layout'] = 'voting.tpl.html';
$log['logfile'] = 'log.txt';
$show_error_messages = 'yes';
/*****************************************************
** Add here further words, text, variables and stuff
** that you want to appear in the template.
*****************************************************/
$add_text = array(
'txt_additional' => 'Additional', // {txt_additional}
'txt_more' => 'More', // {txt_more}
'txt_script_name' => 'Voting Script'
);
/*****************************************************
** Send safety signal to included files
*****************************************************/
define('IN_SCRIPT', 'true');
/*****************************************************
** Include script code
*****************************************************/
$script_root = './';
include($script_root . 'inc/core.inc.php');
?>
</body>
</html>
So nun mein Problem, es sollten mehrere sachen ausgewäshlt werden können.
Wie mach ich das
Bitte helft mir
mfg Kevin