I have created a simple plugin where a staff members fills out a form, and the information gets inserted into a database. Simple five column table. However, for some reason I am unable to pass variables from the form page to the second page where I can do the mysql insert statement.
Here's my form page (ignore all my debugging information).
PHP Code:
<?php
require_once('./global.php');
print_cp_header('School Points');
// Main Table goes here
print_table_start();
print_table_header('Add School Points');
//---Add admincp rows/options in here---
//print_r($vbulletin->userinfo);
$username = $vbulletin->userinfo['username'];
echo $username." - user";
print_form_header("submitpoints");
construct_hidden_code('username',$username,true);
$arr = array(0 => 'Beauxbatons', 1 => 'Durmstrang', 3 => 'Hogwarts');
print_input_select_row("Points Amount","school_points","0","school_name",$arr,"my text");
print_textarea_row("Description","input_desc","");
print_submit_row('Submit','Reset');
print_table_footer(2,'','',true)
//---Add admincp rows/options in here--- ?>
<?php
print_table_footer();
print_cp_footer();
?>
And here is my second page the form goes to:
PHP Code:
<?php
require_once('./global.php');
print_cp_header('School Points');
// Main Table goes here
print_table_start();
print_table_header('Add School Points');
//---Add admincp rows/options in here---
//print_r($vbulletin->userinfo);
echo $school_points." - school_points<br>";
echo $input_desc ." - input_desc";
//---Add admincp rows/options in here--- ?>
<?php
print_table_footer();
print_cp_footer(); ?>
Right now I'm just trying to get it to display the variables from the form page, I can handle the sql queries, but I cannot get the form variables to pass onto the second page, they always come over as blank.
I had thought about creating a global variable, but if they're getting pass through a form, they should automatically be transferred.