3 # This form requires wfpl. If you didn't recieve wfpl along with this file,
4 # see: http://jasonwoof.org/wfpl
6 # This form was auto-generated. If you would like to alter the parameters and
7 # generate a new one try this URL:
13 <!--~opt_email_1 start~-->
14 # To send results by e-mail, all you have to do is set your e-mail address here:
15 $GLOBALS['~form_name~_form_recipient'] = "fixme@example.com";
16 <!--~end~--><!--~opt_db_1 start~-->
17 # To save results to a database, you'll need to create the ~form_name~ table
18 # (the file ~form_name~.sql should help with this), and create the file
19 # 'code/db_connect.php' which calls db_connect() see:
20 # code/wfpl/examples/db_connect.php
22 # if you rename any of the database fields, you'll need to update this:
24 define('~form_name.upper~_DB_FIELDS', '~db_fields~');
25 <!--~end~--><!--~upload_settings start~-->
26 # Set this to the path to your uploads directory. It can be relative to the
27 # location of this script. IT MUST END WITH A SLASH
28 $GLOBALS['upload_directory'] = 'uploads/';
29 <!--~end~--><!--~opt_http_pass_1 start~-->
30 # Define the username and password required to view this form:
31 define('AUTH_REALM', '~form_name~ administration area');
32 define('AUTH_USER', 'fixme');
33 define('AUTH_PASS', 'fixme');
36 if(!file_exists('code/wfpl/template.php')) { die('This form requires <a href="http://jasonwoof.org/wfpl">wfpl</a>.'); }
37 require_once('code/wfpl/template.php');
38 require_once('code/wfpl/format.php');
39 require_once('code/wfpl/messages.php');
40 require_once('code/wfpl/email.php');<!--~opt_db_2 start~-->
41 require_once('code/db_connect.php');<!--~end~--><!--~image_include start~-->
42 require_once('code/wfpl/upload.php');<!--~end~-->
44 function ~form_name~_get_fields() {<!--~formats start~-->
45 $~name~ = format_~format~($_REQUEST['~name~']<!--~pulldown_format_extra start~-->, '~name~'<!--~end~-->);<!--~end~--><!--~image_upload start~-->
46 if($_FILE['~name~'] && $_FILE['~name~']['error'] == 0) {
47 $~name~ = substr(save_uploaded_image('~name~', $GLOBALS['upload_directory']), strlen($GLOBALS['upload_directory']));
49 $~name~ = format_filename($_REQUEST['old_~name~']);
52 ~form_name~_tem_sets(~php_fields~);
54 return array(~php_fields~);
57 function ~form_name~_tem_sets(~php_fields~) {<!--~tem_sets start~-->
58 tem_set('~name~', $~name~);<!--~end~-->
60 <!--~opt_listing_2 start~-->
61 # You may pass a "where clause" for the db query.
62 function ~form_name~_display_listing($where = 'order by ~always_field~ limit 100') {
63 $rows = db_get_rows('~form_name~', 'id,~always_field~', $where);
64 if($rows == false || count($rows) == 0) {
68 foreach($rows as $row) {
69 list($id, $~always_field~) = $row;
71 if($~always_field~ == '') {
72 $~always_field~ = '--';
74 tem_set('~always_field~', $~always_field~);
75 tem_sub('listing_row');
81 function ~form_name~_main() {<!--~opt_http_pass_2 start~-->
82 # To remove password protection, just delete this block:
83 if (!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER'] != AUTH_USER || $_SERVER['PHP_AUTH_PW'] != AUTH_PASS) {
84 header('WWW-Authenticate: Basic realm="' . AUTH_REALM . '"');
85 header('HTTP/1.0 401 Unauthorized');
86 echo '401 Unauthorized';
89 <!--~end~--><!--~pulldowns start~-->
90 pulldown('~name~', array('option 1', 'option 2', 'option 3'));
91 <!--~end~--><!--~opt_db_3 start~-->
92 $edit_id = format_int($_REQUEST['~form_name~_edit_id']);
93 unset($_REQUEST['~form_name~_edit_id']);
95 # add hidden field for database id of row we're editing
96 tem_set('~form_name~_edit_id', $edit_id);
100 $delete_id = format_int($_REQUEST['~form_name~_delete_id']);
101 unset($_REQUEST['~form_name~_delete_id']);
103 db_delete('~form_name~', 'where id=%i', $delete_id);
104 message('Entry deleted.');<!--~opt_listing_3 start~-->
106 if(~form_name~_display_listing()) {
109 unset($delete_id);<!--~end~--><!--~opt_listing_3_else start~-->
111 # FIXME: what to do after delete?
115 if(!$edit_id) {<!--~opt_listing_1 start~-->
116 if(!isset($_REQUEST['~form_name~_new']) && !isset($_REQUEST['~always_field~'])) {
117 if(~form_name~_display_listing()) {
125 if(isset($_REQUEST['~always_field~'])) {
126 list(~php_fields~) = ~form_name~_get_fields();
128 if("you're happy with the POSTed values") {<!--~opt_db_4 start~-->
129 if($edit_id) {<!--~image_db start~-->
130 # uploading nothing means leaving it as is.
131 if(!$~name~ && $delete_~name~ != 'Yes') {
132 $~name~ = db_get_value('~form_name~', '~name~', 'where id=%i', $edit_id);
135 db_update('~form_name~', ~form_name.upper~_DB_FIELDS, ~php_fields~, 'where id=%i', $edit_id);
136 message('Entry updated.');
138 db_insert('~form_name~', ~form_name.upper~_DB_FIELDS, ~php_fields~);
139 message('Entry saved.');
140 }<!--~end~--><!--~opt_email_2 start~-->
141 if($GLOBALS['~form_name~_form_recipient'] != "fixme@example.com") {
142 $to = $GLOBALS['~form_name~_form_recipient'];
143 if(isset($_REQUEST['email']) and valid_email($_REQUEST['email'])) {
144 $from = $_REQUEST['email'];
145 if($_REQUEST['name'] and ereg('^[a-zA-Z0-9_\' -]*$', $_REQUEST['name']) !== false) {
146 $from = "$_REQUEST[name] <$from>";
151 $subject = '~form_name~ form submitted';
152 $message = tem_run('~form_name~.email.txt');
155 if(email($from, $to, $subject, $message, $cc, $bcc)) {
156 message('Due to an internal error, your message could not be sent. Please try again later.');
160 if($error !== true) {<!--~opt_listing_4 start~-->
161 ~form_name~_display_listing();<!--~end~--><!--~opt_listing_4_else start~-->
162 tem_sub('thankyou');<!--~end~-->
166 # otherwise, we display the form again. ~form_name~_get_fields() has
167 # already put the posted values back into the template engine, so they will
168 # show up in the form fields. You should add some message asking people to
169 # fix their entry in whatever way you require.<!--~opt_db_5 start~-->
171 # we've recieved an edit id, but no data. So we grab the values to be edited from the database
172 list(~php_fields~) = db_get_row('~form_name~', ~form_name.upper~_DB_FIELDS, 'where id=%i', $edit_id);
173 ~form_name~_tem_sets(~php_fields~);<!--~end~-->
175 # form not submitted, you can set default values like so:
176 #tem_set('~always_field~', 'Yes');
177 }<!--~upload_max start~-->
179 tem_set('upload_max_filesize', upload_max_filesize());<!--~end~-->
181 # this has to be later in the file because it requres that ~always_field~ be set already