}
/**
- * Detect safely the script path without trailing slash which is the part
+ * Detect safely the script path without trailing slash which is the glue
* between "http://your-domain.invalid/" and "script-name.php"
*/
public function detectScriptPath () {
// Is the scriptname set?
if (isset($_SERVER['SCRIPT_NAME'])) {
- // Get dirname of it
- $scriptPath = dirname($_SERVER['SCRIPT_NAME']);
+ // Get dirname from it and replace back-slashes with slashes for lame OSes...
+ $scriptPath = str_replace("\\", "/", dirname($_SERVER['SCRIPT_NAME']));
} // END - if
// Return it
return $scriptPath;
}
-
- /**
- * Getter for field name
- *
- * @param $fieldName Field name which we shall get
- * @return $fieldValue Field value from the user
- */
- function getField ($fieldName) {
- // Dummy method!
- }
-
- /**
- * Updates a given field with new value
- *
- * @param $fieldName Field to update
- * @param $fieldValue New value to store
- * @return void
- */
- public function updateDatabaseField ($fieldName, $fieldValue) {
- // Dummy method!
- }
}
// [EOF]