The following warnings occurred: | ||||||||||||
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
|
No data insertion. (URGENT HELP) - Printable Version +- UserSpice (https://userspice.com/forums) +-- Forum: Support Center (https://userspice.com/forums/forumdisplay.php?fid=23) +--- Forum: UserSpice 4.4 (https://userspice.com/forums/forumdisplay.php?fid=27) +--- Thread: No data insertion. (URGENT HELP) (/showthread.php?tid=1173) |
No data insertion. (URGENT HELP) - eforbes - 10-12-2018 I created the form from a database table and when i click submit, no record is showing in the table. <?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 '../users/init.php'; ?> <?php require_once $abs_us_root.$us_url_root.'users/includes/header.php'; ?> <?php require_once $abs_us_root.$us_url_root.'users/includes/navigation.php'; ?> <?php if (!securePage($_SERVER['PHP_SELF'])){die();} ?> <?php if(!empty($_POST)){ preProcessForm(); } ?> <div id="page-wrapper"> <!-- Page Heading --> <!-- /.row --> <div class="container"> <div class="row"> <div class="col-xs-12 col-md-10"> <input type="hidden" name="csrf" value="<?=Token::generate()?>" /> <? displayForm('members'); ?> </div> </div> </div> <?php processForm(['debug'=>1]); ?> </div> <!-- /container --> </div> <!-- /#page-wrapper --> </body> </html> RE: No data insertion. (URGENT HELP) - Brandin - 10-13-2018 I believe the function is: processForm(); |