IMAGE_JPG_DIR
IMAGE_JPG_DIR
| Catalog | A Catalog is a class that manages tabular data. |
| Catalog | A Catalog is a class that manages tabular data. |
| ExecutionTime | A class to check the execution time of a script. |
| kiosk_checker | Class to checks the kiosks to make sure they are still alive. |
| MySessionHandler | A class to handle the current session. This class holds the name of the session and the user ID associated with it. |
| Permissions | The Permissions class |
| Roles | The Roles class |
| Status | Manage status notices within the script. |
| TaskHandler | Task handler. |
| User | The User System |
sqlite_insert_array( $arr, $table, $valid_cols = NULL, $filter = NULL)
EXAMPLE filter function: pass "modify_tjff_query"
function modify_tjff_query(&$field, &$value) {
if($field=="running_time") { if(!is_numeric($value)) { // Remove "min" which is probably there $value = str_replace("min", "", $value); $value = trim($value); } return; } else if($field=="description") { $value = "
".$value."
"; return; } }| $arr | ||
| $table | ||
| $valid_cols | ||
| $filter |