data tables are going to need some work yet, but the other stuff seems to be working 100%
16 lines
265 B
PHP
16 lines
265 B
PHP
<?php
|
|
function getRawEditorData($paramName) {
|
|
if ($paramName) {
|
|
if (isset($_POST[$paramName])) {
|
|
return $_POST[$paramName];
|
|
} else if (isset($_GET[$paramName])) {
|
|
return $_GET[$paramName];
|
|
} else {
|
|
return null;
|
|
}
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
?>
|