//This outputs an empty array
print_r( $_POST );
//This function always returns null because $_POST['action'] is null
function wordbook_admin_load() {
if (!$_POST['action']) {
return;
}
switch ($_POST['action']) {
.....//This outputs an empty array
print_r( $_POST );
//This function always returns null because $_POST['action'] is null
function wordbook_admin_load() {
if (!$_POST['action']) {
return;
}
switch ($_POST['action']) {
.....This topic has been closed to new replies.