03-06-2018, 03:08 PM
Hi there,
I'm currently developing a website where user can organize their own events. I'm currently coding the create form for my website, but when i click submit on my form it returns a error. Maybe its just me.
here is the code sofar:
<pre></pre>
I'm currently developing a website where user can organize their own events. I'm currently coding the create form for my website, but when i click submit on my form it returns a error. Maybe its just me.
here is the code sofar:
<pre>
Code:
<?php
/*
UserSpice 4
An Open Source PHP User Management System
by the UserSpice Team at http://UserSpice.com
This program 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 3 of the License, or
(at your option) any later version.
This program 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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<?php
require_once '/home/dave/public_html/users/init.php';
require_once $abs_us_root.$us_url_root.'users/includes/header.php';
require_once $abs_us_root.$us_url_root.'users/includes/navigation.php';
?>
<div id="page-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-xs-3">
<h1>Organizeer een event</h1>
<?php
//Laat het formulier zien
displayForm('event');
?>
</div> <!-- /.col -->
</div> <!-- /.row -->
</div> <!-- /.container -->
</div> <!-- /.wrapper -->
<?php
//Zet de ingevoerde data in de database
processForm(['debug'=>1]);
?>
<!-- footers -->
<?php require_once $abs_us_root.$us_url_root.'users/includes/page_footer.php'; // the final html footer copyright row + the external js calls ?>
<!-- Place any per-page javascript here -->
<?php require_once $abs_us_root.$us_url_root.'users/includes/html_footer.php'; // currently just the closing /body and /html ?>