had to remove echo statement to see what the column arguments were.

This commit is contained in:
Tristan Ancelet 2023-05-15 19:52:58 -05:00
parent 5d5dd02fb0
commit 93c0982363

View File

@ -21,7 +21,6 @@ if ( array_key_exists("limit", $_GET)){
} }
if ( array_key_exists("columns", $_GET)){ if ( array_key_exists("columns", $_GET)){
echo $_GET["columns"];
$columns = explode(',', $_GET["columns"]); $columns = explode(',', $_GET["columns"]);
} }