当前位置: 首页>>代码示例>>PHP>>正文


PHP get_form_var函数代码示例

本文整理汇总了PHP中get_form_var函数的典型用法代码示例。如果您正苦于以下问题:PHP get_form_var函数的具体用法?PHP get_form_var怎么用?PHP get_form_var使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了get_form_var函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: get_form_var

$all_day = get_form_var('all_day', 'string');
// bool, actually
$type = get_form_var('type', 'string');
$rooms = get_form_var('rooms', 'array');
$returl = get_form_var('returl', 'string');
$rep_id = get_form_var('rep_id', 'int');
$edit_type = get_form_var('edit_type', 'string');
$id = get_form_var('id', 'int');
$rep_end_day = get_form_var('rep_end_day', 'int');
$rep_end_month = get_form_var('rep_end_month', 'int');
$rep_end_year = get_form_var('rep_end_year', 'int');
$rep_id = get_form_var('rep_id', 'int');
$rep_day = get_form_var('rep_day', 'array');
// array of bools
$rep_num_weeks = get_form_var('rep_num_weeks', 'int');
$private = get_form_var('private', 'string');
// bool, actually
// Truncate the name field to the maximum length as a precaution.
// Although the MAXLENGTH attribute is used in the <input> tag, this can
// sometimes be ignored by the browser, for example by Firefox when
// autocompletion is used.  The user could also edit the HTML and remove
// the MAXLENGTH attribute.    Passing an oversize string to some
// databases (eg some versions of PostgreSQL) results in an SQL error,
// rather than silent truncation of the string.
$name = substr($name, 0, ENTRY_NAME_LENGTH);
if (empty($area)) {
    if (empty($rooms[0])) {
        $area = get_default_area();
    } else {
        $area = get_area($rooms[0]);
    }
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:edit_entry_handler.php

示例2: get_form_var

$From_day = get_form_var('From_day', 'int');
$From_month = get_form_var('From_month', 'int');
$From_year = get_form_var('From_year', 'int');
$To_day = get_form_var('To_day', 'int');
$To_month = get_form_var('To_month', 'int');
$To_year = get_form_var('To_year', 'int');
$creatormatch = get_form_var('creatormatch', 'string');
$areamatch = get_form_var('areamatch', 'string');
$roommatch = get_form_var('roommatch', 'string');
$namematch = get_form_var('namematch', 'string');
$descrmatch = get_form_var('descrmatch', 'string');
$summarize = get_form_var('summarize', 'int');
$typematch = get_form_var('typematch', 'array');
$sortby = get_form_var('sortby', 'string');
$display = get_form_var('display', 'string');
$sumby = get_form_var('sumby', 'string');
# Require authenticated user if private bookings are required
if ($private_override == "private") {
    if (!getAuthorised(1)) {
        showAccessDenied($day, $month, $year, $area, "");
        exit;
    }
}
# Need to know user name and if they are an admin
$user = getUserName();
$is_admin = isset($user) && authGetUserLevel($user) >= 2;
//If we dont know the right date then make it up
if (!isset($day) or !isset($month) or !isset($year)) {
    $day = date("d");
    $month = date("m");
    $year = date("Y");
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:report.php

示例3: md5

             // Hash the password for security
             $value = md5($password0);
         } else {
             if ($fieldname == "level") {
                 $value = get_form_var('Field_level', 'int');
                 if (!isset($value)) {
                     $value = 0;
                 }
                 // Check that we are not trying to upgrade our level.    This shouldn't be possible
                 // but someone might have spoofed the input in the edit form
                 if ($value > $level) {
                     Header("Location: edit_users.php");
                     exit;
                 }
             } else {
                 $value = get_form_var("Field_{$fieldname}", $field_props[$fieldname]['type']);
             }
         }
     }
 }
 // pre-process the field value for SQL
 if ($field_props[$fieldname]['istext']) {
     // Truncate the field to the maximum length as a precaution.
     if (isset($maxlength["users.{$fieldname}"])) {
         $value = substr($value, 0, $maxlength["users.{$fieldname}"]);
     }
     $value = "'" . addslashes($value) . "'";
 } else {
     if ($field_props[$fieldname]['isbool']) {
         if ($value && $value == true) {
             $value = "TRUE";
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:edit_users.php

示例4: get_form_var

<?php

// $Id$
require_once "grab_globals.inc.php";
include "config.inc.php";
include "functions.inc";
include "dbsys.inc";
// Get form variables
$day = get_form_var('day', 'int');
$month = get_form_var('month', 'int');
$year = get_form_var('year', 'int');
$area = get_form_var('area', 'int');
$room = get_form_var('room', 'int');
$id = get_form_var('id', 'int');
$series = get_form_var('series', 'int');
// If we dont know the right date then make it up
if (!isset($day) or !isset($month) or !isset($year)) {
    $day = date("d");
    $month = date("m");
    $year = date("Y");
}
if (empty($area)) {
    $area = get_default_area();
}
print_header($day, $month, $year, $area, isset($room) ? $room : "");
if (empty($series)) {
    $series = 0;
} else {
    $series = 1;
}
if ($series) {
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:view_entry.php

示例5: get_form_var

<?php

// $Id$
require_once "grab_globals.inc.php";
include "config.inc.php";
include "{$dbsys}.inc";
include "mrbs_auth.inc";
include "functions.inc";
include "version.inc";
// Get form variables
$day = get_form_var('day', 'int');
$month = get_form_var('month', 'int');
$year = get_form_var('year', 'int');
$area = get_form_var('area', 'int');
$room = get_form_var('room', 'int');
// If we dont know the right date then make it up
if (!isset($day) or !isset($month) or !isset($year)) {
    $day = date("d");
    $month = date("m");
    $year = date("Y");
}
if (empty($area)) {
    $area = get_default_area();
}
print_header($day, $month, $year, $area, isset($room) ? $room : "");
echo "<h3>" . get_vocab("about_mrbs") . "</h3>\n";
echo "<table id=\"version_info\">\n";
echo "<tr><td><a href=\"http://mrbs.sourceforge.net\">" . get_vocab("mrbs") . "</a>:</td><td>" . get_mrbs_version() . "</td></tr>\n";
echo "<tr><td>" . get_vocab("database") . ":</td><td>" . sql_version() . "</td></tr>\n";
echo "<tr><td>" . get_vocab("system") . ":</td><td>" . php_uname() . "</td></tr>\n";
echo "<tr><td>" . get_vocab("servertime") . ":</td><td>" . utf8_strftime("%c", time()) . "</td></tr>\n";
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:help.php

示例6: get_form_var

include "mrbs_auth.inc";
// Get form variables
$day = get_form_var('day', 'int');
$month = get_form_var('month', 'int');
$year = get_form_var('year', 'int');
$area = get_form_var('area', 'int');
$room = get_form_var('room', 'int');
$room_name = get_form_var('room_name', 'string');
$area_name = get_form_var('area_name', 'string');
$description = get_form_var('description', 'string');
$capacity = get_form_var('capacity', 'int');
$room_admin_email = get_form_var('room_admin_email', 'string');
$area_admin_email = get_form_var('area_admin_email', 'string');
$change_done = get_form_var('change_done', 'string');
$change_room = get_form_var('change_room', 'string');
$change_area = get_form_var('change_area', 'string');
// If we dont know the right date then make it up
if (!isset($day) or !isset($month) or !isset($year)) {
    $day = date("d");
    $month = date("m");
    $year = date("Y");
}
if (!getAuthorised(2)) {
    showAccessDenied($day, $month, $year, $area, "");
    exit;
}
// Done changing area or room information?
if (isset($change_done)) {
    if (!empty($room)) {
        $area = sql_query1("SELECT area_id from {$tbl_room} where id={$room}");
    }
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:edit_area_room.php

示例7: sql_query1

     $Id = sql_query1("select max(id) from {$tbl_users};") + 1;
     /* Use the last index + 1 */
     /* Note: If the table is empty, sql_query1 returns -1. So use index 0. */
 }
 $i = 0;
 foreach ($fields as $fieldname) {
     if ($fieldname == "id") {
         $value = $Id;
     } else {
         if ($fieldname == "name") {
             $value = strtolower(get_form_var('Field_name', 'string'));
         } else {
             if ($fieldname == "password" && $password0 != "") {
                 $value = md5($password0);
             } else {
                 $value = get_form_var("Field_{$fieldname}", $field_props[$fieldname]['istext'] ? 'string' : 'int');
             }
         }
     }
     if ($i > 0) {
         $operation = $operation . ", ";
     }
     if ($field_props[$fieldname]['istext']) {
         $operation .= "'" . slashes($value) . "'";
     } else {
         if ($field_props[$fieldname]['isnum'] && $value == "") {
             $value = "0";
         }
         $operation = $operation . $value;
     }
     $i++;
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:edit_users.php

示例8: get_form_var

<?php

// $Id: day.php 2374 2012-08-12 19:11:43Z cimorrison $
require "defaultincludes.inc";
require_once "mincals.inc";
require_once "functions_table.inc";
// Get non-standard form variables
$timetohighlight = get_form_var('timetohighlight', 'int');
$ajax = get_form_var('ajax', 'int');
// Check the user is authorised for this page
checkAuthorised();
$inner_html = day_table_innerhtml($day, $month, $year, $room, $area, $timetohighlight);
if ($ajax) {
    echo $inner_html;
    exit;
}
// Form the room parameter for use in query strings.    We want to preserve room information
// if possible when switching between views
$room_param = empty($room) ? "" : "&amp;room={$room}";
$timestamp = mktime(12, 0, 0, $month, $day, $year);
// print the page header
print_header($day, $month, $year, $area, isset($room) ? $room : "");
echo "<div id=\"dwm_header\" class=\"screenonly\">\n";
// Show all available areas
echo make_area_select_html('day.php', $area, $year, $month, $day);
// Draw the three month calendars
if (!$display_calendar_bottom) {
    minicals($year, $month, $day, $area, $room, 'day');
}
echo "</div>\n";
//y? are year, month and day of yesterday
开发者ID:koroder,项目名称:Web-portal-for-academic-institution,代码行数:31,代码来源:day.php

示例9: array

     exit;
 } else {
     $values = array();
     $q_string = $Id >= 0 ? "Action=Edit" : "Action=Add";
     foreach ($fields as $field) {
         $fieldname = $field['name'];
         $type = get_form_var_type($field);
         if ($fieldname == 'id') {
             // id: don't need to do anything except add the id to the query string;
             // the field itself is auto-incremented
             $q_string .= "&Id={$Id}";
             continue;
         }
         // first, get all the other form variables and put them into an array, $values, which
         // we will use for entering into the database assuming we pass validation
         $values[$fieldname] = get_form_var(VAR_PREFIX . $fieldname, $type);
         // Truncate the field to the maximum length as a precaution.
         if (isset($maxlength["users.{$fieldname}"])) {
             $values[$fieldname] = substr($values[$fieldname], 0, $maxlength["users.{$fieldname}"]);
         }
         // we will also put the data into a query string which we will use for passing
         // back to this page if we fail validation.   This will enable us to reload the
         // form with the original data so that the user doesn't have to
         // re-enter it.  (Instead of passing the data in a query string we
         // could pass them as session variables, but at the moment MRBS does
         // not rely on PHP sessions).
         switch ($fieldname) {
             // some of the fields get special treatment
             case 'name':
                 // name: convert it to lower case
                 $q_string .= "&{$fieldname}=" . urlencode($values[$fieldname]);
开发者ID:koroder,项目名称:Web-portal-for-academic-institution,代码行数:31,代码来源:edit_users.php

示例10: get_form_var

        echo "</td>\n</tr>\n";
    }
}
// Get non-standard form variables
$search_str = get_form_var('search_str', 'string');
$search_pos = get_form_var('search_pos', 'int');
$total = get_form_var('total', 'int');
$advanced = get_form_var('advanced', 'int');
$ajax = get_form_var('ajax', 'int');
// Set if this is an Ajax request
$datatable = get_form_var('datatable', 'int');
// Will only be set if we're using DataTables
// Get the start day/month/year and make them the current day/month/year
$day = get_form_var('from_day', 'int');
$month = get_form_var('from_month', 'int');
$year = get_form_var('from_year', 'int');
// If we haven't been given a sensible date then use today's
if (!isset($day) || !isset($month) || !isset($year) || !checkdate($month, $day, $year)) {
    $day = date("d");
    $month = date("m");
    $year = date("Y");
}
// Check the user is authorised for this page
checkAuthorised();
// Also need to know whether they have admin rights
$user = getUserName();
$is_admin = isset($user) && authGetUserLevel($user) >= 2;
// Set up for Ajax.   We need to know whether we're capable of dealing with Ajax
// requests, which will only be if (a) the browser is using DataTables and (b)
// we can do JSON encoding.    We also need to initialise the JSON data array.
$ajax_capable = $datatable && function_exists('json_encode');
开发者ID:bdwong-mirrors,项目名称:mrbs,代码行数:31,代码来源:search.php

示例11: checkAuthorised

        }
        echo "</ul></li>\n";
    }
    echo "</ul>\n";
    echo "</div>\n";
    return FALSE;
}
// Check the user is authorised for this page
checkAuthorised();
print_header($day, $month, $year, $area, $room);
$import = get_form_var('import', 'string');
$area_room_order = get_form_var('area_room_order', 'string', 'area_room');
$area_room_delimiter = get_form_var('area_room_delimiter', 'string', $default_area_room_delimiter);
$area_room_create = get_form_var('area_room_create', 'string', '0');
$import_default_type = get_form_var('import_default_type', 'string', $default_type);
$skip = get_form_var('skip', 'string', empty($skip_default) ? '0' : '1');
// PHASE 2 - Process the files
// ---------------------------
if (!empty($import)) {
    if ($_FILES['ics_file']['error'] !== UPLOAD_ERR_OK) {
        echo "<p>\n";
        echo get_vocab("upload_failed");
        switch ($_FILES['ics_file']['error']) {
            case UPLOAD_ERR_INI_SIZE:
                echo "<br>\n";
                echo get_vocab("max_allowed_file_size") . " " . ini_get('upload_max_filesize');
                break;
            case UPLOAD_ERR_NO_FILE:
                echo "<br>\n";
                echo get_vocab("no_file");
                break;
开发者ID:Rahul6818,项目名称:mrbs,代码行数:31,代码来源:import.php

示例12: get_form_var

<?php

// $Id: approve_entry_handler.php 2798 2013-12-13 13:52:20Z cimorrison $
// Handles actions on bookings awaiting approval
require "defaultincludes.inc";
require_once "mrbs_sql.inc";
require_once "functions_mail.inc";
// Get non-standard form variables
$action = get_form_var('action', 'string');
$id = get_form_var('id', 'int');
$series = get_form_var('series', 'int');
$returl = get_form_var('returl', 'string');
$note = get_form_var('note', 'string');
// Check the user is authorised for this page
checkAuthorised();
$user = getUserName();
// Retrieve the booking details
$data = mrbsGetBookingInfo($id, $series);
$room_id = $data['room_id'];
// Initialise $mail_previous so that we can use it as a parameter for notifyAdminOnBooking
$mail_previous = array();
$start_times = array();
// Give the return URL a query string if it doesn't already have one
if (strpos($returl, '?') === FALSE) {
    $returl .= "?year={$year}&month={$month}&day={$day}&area={$area}&room={$room}";
}
if (isset($action)) {
    if ($need_to_send_mail) {
        $is_new_entry = TRUE;
        // Treat it as a new entry unless told otherwise
    }
开发者ID:linuxmuster,项目名称:linuxmuster-mrbs-manager,代码行数:31,代码来源:approve_entry_handler.php

示例13: array

        If these are not specified the script will use your normal MRBS
        database credentials:<br>
        Database admin username: <input type="text" name="admin_username"><br>
        Database admin password: <input type="password" name="admin_password"><br>
      </div>
      <br>
      <input type="submit" value="Do it">
    </form>

<?php 
} else {
    # A 2D array listing the columns that need to be converted to UTF-8
    $update_columns = array($tbl_area => array('area_name', 'custom_html'), $tbl_room => array('room_name', 'description', 'room_admin_email', 'custom_html'), $tbl_entry => array('create_by', 'name', 'description', 'info_user', 'info_text'), $tbl_repeat => array('create_by', 'name', 'description', 'info_user', 'info_text'), $tbl_users => array('name', 'password', 'email'));
    $admin_username = get_form_var('admin_username', 'string');
    $admin_password = get_form_var('admin_password', 'string');
    $change_collation = get_form_var('change_collation', 'int');
    if (is_null($change_collation)) {
        $change_collation = 0;
    }
    if (is_null($admin_username) || $admin_username == '') {
        $admin_username = $db_login;
        $admin_password = $db_password;
    }
    $db_handle = sql_connect($dbsys, $db_host, $admin_username, $admin_password, $db_database);
    echo '
    <p>
      Starting update, this could take a while...
    </p>

';
    if ($encoding != 'utf-8') {
开发者ID:dev-lav,项目名称:htdocs,代码行数:31,代码来源:convert_db_to_utf8.php

示例14: get_form_var

<?php

// $Id$
require_once "defaultincludes.inc";
// Get form variables
$day = get_form_var('day', 'int');
$month = get_form_var('month', 'int');
$year = get_form_var('year', 'int');
$area = get_form_var('area', 'int');
$room = get_form_var('room', 'int');
$search_str = get_form_var('search_str', 'string');
$search_pos = get_form_var('search_pos', 'int');
$total = get_form_var('total', 'int');
$advanced = get_form_var('advanced', 'int');
$user = getUserName();
$is_admin = isset($user) && authGetUserLevel($user) >= 2;
// If we dont know the right date then make it up
if (!isset($day) or !isset($month) or !isset($year)) {
    $day = date("d");
    $month = date("m");
    $year = date("Y");
}
if (empty($area)) {
    $area = get_default_area();
}
// Need all these different versions with different escaping.
if (!empty($search_str)) {
    $search_url = urlencode($search_str);
    $search_html = htmlspecialchars($search_str);
}
print_header($day, $month, $year, $area, isset($room) ? $room : "");
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:search.php

示例15: get_form_var

include "config.inc.php";
include "functions.inc";
include "{$dbsys}.inc";
include "mrbs_auth.inc";
global $twentyfourhour_format;
// Get form variables
$day = get_form_var('day', 'int');
$month = get_form_var('month', 'int');
$year = get_form_var('year', 'int');
$hour = get_form_var('hour', 'int');
$minute = get_form_var('minute', 'int');
$area = get_form_var('area', 'int');
$room = get_form_var('room', 'int');
$id = get_form_var('id', 'int');
$copy = get_form_var('copy', 'int');
$edit_type = get_form_var('edit_type', 'string');
// If we dont know the right date then make it up
if (!isset($day) or !isset($month) or !isset($year)) {
    $day = date("d");
    $month = date("m");
    $year = date("Y");
}
if (empty($area)) {
    $area = get_default_area();
}
if (!isset($edit_type)) {
    $edit_type = "";
}
if (!getAuthorised(1)) {
    showAccessDenied($day, $month, $year, $area);
    exit;
开发者ID:verdurin,项目名称:mrbs-mcr,代码行数:31,代码来源:edit_entry.php


注:本文中的get_form_var函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。