• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP mysql_prep函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: find_distinct_course_date

function find_distinct_course_date()
{
    global $connection;
    if (isset($_GET["historical_course_date"])) {
        $safe_course_date = mysql_prep($_GET["historical_course_date"]);
    }
    if (isset($_GET["historical_monthname_course_date"])) {
        $safe_monthname_course_date = mysql_prep($_GET["historical_monthname_course_date"]);
    }
    if (isset($_GET["historical_year_course_date"])) {
        $safe_year_course_date = mysql_prep($_GET["historical_year_course_date"]);
    }
    if (isset($_GET["historical_yearweek_course_date"])) {
        $safe_yearweek_course_date = mysql_prep($_GET["historical_yearweek_course_date"]);
    }
    $query = "SELECT * FROM summary_by_course_date_program ";
    if (isset($safe_course_date)) {
        $query .= "WHERE course_date='{$safe_course_date}' ";
        $whereAnd = " AND ";
    } else {
        $whereAnd = " WHERE ";
    }
    if (isset($safe_monthname_course_date) && $safe_monthname_course_date) {
        $query .= "{$whereAnd} monthname(course_date)='{$safe_monthname_course_date}' ";
        $whereAnd = " AND ";
    } elseif ($whereAnd == " AND ") {
        $whereAnd = " AND ";
    } else {
        $whereAnd = " WHERE ";
    }
    if (isset($safe_year_course_date) && $safe_year_course_date) {
        $query .= "{$whereAnd} year(course_date)='{$safe_year_course_date}' ";
        $whereAnd = " AND ";
    } elseif ($whereAnd == " AND ") {
        $whereAnd = " AND ";
    } else {
        $whereAnd = " WHERE ";
    }
    if (isset($safe_yearweek_course_date) && $safe_yearweek_course_date) {
        $query .= "{$whereAnd} yearweek(course_date)='{$safe_yearweek_course_date}' ";
        $whereAnd = " AND ";
    } elseif ($whereAnd == " AND ") {
        $whereAnd = " AND ";
    } else {
        $whereAnd = " WHERE ";
    }
    //    if (isset($_GET)  ){
    //        if(isset($_GET["course_date"])){
    //            $safe_course_date= mysql_prep($_GET["course_date"]);
    //            $query="WHERE course_date = {$safe_course_date} ";
    //        }
    //    }
    $date_set = mysqli_query($connection, $query);
    confirm_query($date_set);
    return $date_set;
}
开发者ID:kamy333,项目名称:kamy,代码行数:56,代码来源:view_program_history.php


示例2: check_max_field_lengths

function check_max_field_lengths($field_length_array)
{
    $field_errors = array();
    foreach ($field_length_array as $fieldname => $maxlength) {
        if (strlen(trim(mysql_prep($_POST[$fieldname]))) > $maxlength) {
            $field_errors[] = $fieldname;
        }
    }
    return $field_errors;
}
开发者ID:vaghasiy001,项目名称:Syllabus-Generator,代码行数:10,代码来源:form_functions.php


示例3: check_max_fields_length

function check_max_fields_length($fields, $post)
{
    //ispraviti greske
    foreach ($fields as $polje => $max_duz) {
        if (strlen(trim(mysql_prep($post[$polje]))) > $max_duz) {
            $errors[] = $polje;
        }
    }
    return $errors;
}
开发者ID:hidajet,项目名称:cms,代码行数:10,代码来源:edit_functions.php


示例4: count_modele_by_day

function count_modele_by_day($day_no, $visible = 1)
{
    global $connection;
    $safe_day_no = mysql_prep($day_no);
    $safe_visu = mysql_prep($visible);
    $query = "SELECT COUNT(*) AS c FROM programmed_courses_modele WHERE week_day_rank ={$safe_day_no} AND visible=  {$safe_visu} ";
    $result = mysqli_query($connection, $query);
    confirm_query($result);
    $row = mysqli_fetch_assoc($result);
    return $row['c'];
    //
}
开发者ID:kamy333,项目名称:kamy,代码行数:12,代码来源:functions_programs_modele.php


示例5: find_name_category_links

function find_name_category_links($name_category = null)
{
    global $connection;
    $safe_name_category = mysql_prep($name_category);
    $query = "SELECT * ";
    $query .= "FROM links ";
    if ($name_category) {
        $query .= "WHERE category = '{$safe_name_category}'";
    }
    $query .= "ORDER BY rank ASC";
    $link_set = mysqli_query($connection, $query);
    confirm_query($link_set);
    return $link_set;
}
开发者ID:kamy333,项目名称:kamy,代码行数:14,代码来源:function_links.php


示例6: count_prog_by_date_doubled

function count_prog_by_date_doubled($date_sql, $pseudo, $heure)
{
    global $connection;
    $safe_date = mysql_prep($date_sql);
    $safe_pseudo = mysql_prep($pseudo);
    $safe_heure = mysql_prep($heure);
    $query = "SELECT COUNT(*) AS c FROM programmed_courses WHERE course_date ='{$safe_date}' ";
    $query .= "AND pseudo = '{$safe_pseudo} ";
    $query .= "AND heure = '{$safe_heure} ";
    $result = mysqli_query($connection, $query);
    confirm_query($result);
    $row = mysqli_fetch_assoc($result);
    return $row['c'];
    //
}
开发者ID:kamy333,项目名称:kamy,代码行数:15,代码来源:manage_program.php


示例7: add_member

function add_member()
{
    global $connection;
    if (($handle = fopen("data/Needtoadd.csv", "r")) !== FALSE) {
        while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
            $username = mysql_prep($data[5], 1, -1);
            $verification_link = random_string();
            $verification_link_send = urlencode($verification_link);
            $idiot_link = urlencode(random_string());
            $email = mysql_prep($data[8], 1, -1);
            $name = mysql_prep($data[0], 1, -1);
            $to = $email;
            $subject = "Set Your Password";
            $message = "Hi {$username}," . "\n" . "\n" . "Click the link below to set your password." . "\n" . "http://www.acmism.org/verification.php?id={$idiot_link}&link={$verification_link_send}" . "\n" . "Thank you for joining us," . "\n" . "Team ACM.";
            $headers = 'From: ACM ISM Student Chapter <[email protected]>' . "\r\n" . 'Reply-To: ACM ISM Student Chapter <[email protected]>';
            $password = random_string();
            $spoj = mysql_prep($data[5], 1, -1);
            $codechef = mysql_prep($data[6], 1, -1);
            $hackerrank = mysql_prep($data[7], 1, -1);
            $admission = mysql_prep($data[2], 1, -1);
            $member = mysql_prep($data[1], 1, -1);
            $batch = mysql_prep($data[3], 1, -1);
            $branch = mysql_prep($data[4], 1, -1);
            $phone_number = mysql_prep($data[9], 1, -1);
            $hashed_password = sha1($password);
            $query = "INSERT INTO users (\r\n\t\t\t\t\t\tname, username, hashed_password, email, spoj_id, codechef_id, hackerrank_id, admission, member,  batch, branch, phone_number, verification_link\r\n\t\t\t\t\t\t) values (\r\n\t\t\t\t\t\t'{$name}', '{$username}', '{$hashed_password}', '{$email}', '{$spoj}', '{$codechef}', '{$hackerrank}', '{$admission}', '{$member}', '{$batch}', '{$branch}', '{$phone_number}', '{$verification_link}'\r\n\t\t\t\t\t\t)";
            if (mysql_query($query, $connection)) {
                mail($to, $subject, $message, $headers);
                echo "Done " . mysql_prep($data[0], 1, -1);
            } else {
                echo "Left " . mysql_prep($data[0], 1, -1);
                echo mysql_error();
            }
        }
        fclose($handle);
    }
}
开发者ID:ranaparth,项目名称:root-website,代码行数:37,代码来源:needtoadd.php


示例8: mysql_prep

function mysql_prep($value)
{
    $magic_quotes_active = get_magic_quotes_gpc();
    $new_enough_php = function_exists("mysql_real_escape_string");
    // i.e. PHP >= v4.3.0
    if ($new_enough_php) {
        // PHP v4.3.0 or higher
        // undo any magic quote effects so mysql_real_escape_string can do the work
        if ($magic_quotes_active) {
            $value = stripslashes($value);
        }
        $value = mysql_real_escape_string($value);
    } else {
        // before PHP v4.3.0
        // if magic quotes aren't already on then add slashes manually
        if (!$magic_quotes_active) {
            $value = addslashes($value);
        }
        // if magic quotes are active, then the slashes already exist
    }
    return $value;
    $name = mysql_prep($_POST['name']);
    $content = mysql_prep($_POST['content']);
    $notes = mysql_prep($_POST['notes']);
    $query = "INSERT INTO songs (\n\t\t\t\ttitle, content, song_notes\n\t\t\t) VALUES (\n\t\t\t\t'{$name}', '{$content}', '{$notes}'\n\t\t\t)";
    $result = mysql_query($query, $connection);
    if ($result) {
        // Success!
        echo "success";
        echo "<p>\"{$name}\" added to database.</p>";
    } else {
        // Display error message.
        echo "<p>Subject creation failed.</p>";
        echo "<p>" . mysql_error() . "</p>";
    }
}
开发者ID:willworth,项目名称:song_guard,代码行数:36,代码来源:addsongsql_simple.php


示例9: mysql_prep

 if ($_POST["question_bank"] == "World Geography") {
     $question_bank = "world_geography";
 } else {
     $question_bank = "geography";
 }
 /*this is copied from new_teacher, make it relevant to new_question*/
 $question_title = mysql_prep($_POST["question_title"]);
 $quiz_name = $_POST["quiz_name"];
 $question = mysql_prep($_POST["Question"]);
 $no_sort = $_POST["no_sort"];
 $image_exist = $_POST["image_exist"];
 $answer_correct = mysql_prep($_POST["AnswerCorrect"]);
 $distractor_one = mysql_prep($_POST["Distractor1"]);
 $distractor_two = mysql_prep($_POST["Distractor2"]);
 $distractor_three = mysql_prep($_POST["Distractor3"]);
 $distractor_four = mysql_prep($_POST["Distractor4"]);
 /*$query  = "INSERT INTO $question_bank (";
   $query .= " QuestionTitle ";
   $query .= ") VALUES (";
   $query .= " '{$question_title}'";
   $query .= ")";*/
 $query = "INSERT INTO {$question_bank} (";
 $query .= " quiz_id, QuestionTitle, quiz_name, Question, no_sort, AnswerCorrect, Distractor1, Distractor2, Distractor3, Distractor4";
 $query .= ") VALUES (";
 $query .= " {$quiz_id}, '{$question_title}', '{$quiz_name}', '{$question}', '{$no_sort}', '{$answer_correct}', '{$distractor_one}', '{$distractor_two}', '{$distractor_three}', '{$distractor_four}' ";
 $query .= ")";
 $result = mysqli_query($connection, $query);
 if ($result) {
     // Success
     $_SESSION["message"] = "Question successfully added!";
     $findID_query = "SELECT * FROM {$question_bank} WHERE quiz_id={$quiz_id} AND QuestionTitle='{$question_title}'";
开发者ID:danieleli,项目名称:snteacher,代码行数:31,代码来源:new_question.php


示例10: mysql_prep

     // No errors, so update database:
     // Get the variables set in the new_subject.php form and modify them using our
     // mysql_prep() function in functions.php to ensure SQL correctness.
     $get_chapter_id = mysql_prep($_GET['chapter']);
     $chapter_id = intval($get_chapter_id);
     // make sure it's an integer
     $content = mysql_prep($_POST['content']);
     // Execute three queries. One on the chapter table; two on the options table
     // CHAPTER TABLE UPDATE
     $query = "UPDATE \t\tchapters\n\t\t\t\t\t\tSET \t\tcontent\t\t= \t'{$content}', endpoint = {$endpoint}\n\t\t\t\t\t\tWHERE\t\tid\t=\t{$chapter_id}";
     $result = mysql_query($query, $connection);
     if (!$result) {
         $errors[] = mysql_error();
     }
     // Update or create the options
     $options = array("first" => array("id" => intval(mysql_prep($options[0]["id"])), "content" => trim(mysql_prep($_POST['option0']))), "second" => array("id" => intval(mysql_prep($options[1]["id"])), "content" => trim(mysql_prep($_POST['option1']))));
     include "includes/edit_options.php";
     // Test for success (make sure 1 row was changed)
     if (count($errors) < 1) {
         // success -- redirect to new page
         redirect_to("read_chapter.php?chapter={$chapter_id}");
     } else {
         // failure
         echo count($errors);
         $message = "Gee, we seem to have a problem. Try again? <br />";
     }
 } else {
     // errors in form
     $message = "Looks like you have " . count($errors);
     if (count($errors) > 1) {
         $message .= " errors in your form.";
开发者ID:akiryk,项目名称:storyengine,代码行数:31,代码来源:edit_chapter.php


示例11: mysql_prep

<?php

require_once "../includes/session.php";
?>
 
<?php 
require_once "../includes/db_connection.php";
require_once "../includes/functions.php";
require_once "../includes/validation_function.php";
if (isset($_POST['submit'])) {
    $menu_name = mysql_prep($_POST["menu_name"]);
    $position = (int) $_POST["position"];
    $visible = (int) $_POST["visible"];
    $required_fields = array("menu_name", "position", "visible");
    validate_presences($required_fields);
    $fields_with_max_lenghts = array("menu_name" => 30);
    validate_max_lengths($fields_with_max_lenghts);
    if (!empty($errors)) {
        $_SESSION["errors"] = $errors;
        redirect_to("new_window.php");
    }
    $query = "INSERT INTO windows ( ";
    $query .= "menu_name ,position, visible ";
    $query .= ") VALUES ( ";
    $query .= " '{$menu_name}',{$position} ,{$visible}";
    $query .= ")";
    echo $query;
    $result = mysqli_query($conn, $query);
    if ($result) {
        $_SESSION["message"] = "Window created.";
        redirect_to("manage_content.php");
开发者ID:kiranrajkher,项目名称:openark,代码行数:31,代码来源:create_window.php


示例12: redirect_to

if (!$admin) {
    redirect_to("index.php");
}
?>
	<?php 
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    //validation
    $required_fields = array("username", "password");
    validate_presences($required_fields);
    $fields_with_max_lenghts = array("username" => 30);
    validate_max_lengths($fields_with_max_lenghts);
    if (empty($errors)) {
        $id = $admin['id'];
        $username = trim($_POST["username"]);
        $password = trim($_POST["password"]);
        $username = mysql_prep($username);
        $password1 = password_encrypt($password);
        $query = "UPDATE admins SET ";
        $query .= " username = '{$username}', ";
        $query .= " hashed_password = '{$password1}' ";
        $query .= " WHERE id = {$id}";
        $query .= " LIMIT 1";
        $result = mysqli_query($connection, $query);
        if ($result) {
            $_SESSION["message"] = "Admin updated";
            redirect_to("manage_admins.php");
        } else {
            $_SESSION["message"] = "Admin is not updated";
            redirect_to("manage_admins.php");
        }
    } else {
开发者ID:nicumih,项目名称:proiectt,代码行数:31,代码来源:edit_admin.php


示例13: array

            //    unset($_POST);
        }
    }
}
if (isset($_POST['submit_links'])) {
    // see introducing php
    $expected = array("name", "web_address", "description", "category", "sub_category_1", "sub_category_2", "privacy", "rank", "username");
    $required_fields = array("name", "web_address", "category", "username", "rank");
    //  validate_presences($required_fields);
    foreach ($_POST as $key => $value) {
        $temp = is_array($value) ? $value : trim($value);
        if (empty($temp) && in_array($key, $required_fields)) {
            $missing[] = $key;
            ${$key} = '';
        } elseif (in_array($key, $expected)) {
            ${$key} = mysql_prep($temp);
        }
    }
    if (empty($missing) && empty($errors)) {
        $table = "links";
        $query = " INSERT INTO {$table} ";
        $query .= "(";
        $query .= "name, ";
        $query .= "web_address, ";
        $query .= "description, ";
        $query .= "category, ";
        $query .= "sub_category_1, ";
        $query .= "sub_category_2, ";
        $query .= "privacy, ";
        $query .= "rank, ";
        $query .= "username ";
开发者ID:kamy333,项目名称:photo_gallery,代码行数:31,代码来源:new_link.php


示例14: logged_in

$active_page = "videos";
?>
<link rel="stylesheet" type="text/css" href="stylesheets/videos.css">
<?php 
$admin = logged_in();
global $connection;
$errors = errors();
?>

<?php 
if (isset($_POST["submit"]) && $admin) {
    // User adding a song.
    $requiredfields = array("newvideo");
    validate_presences($requiredfields);
    if (empty($errors)) {
        $newsong = mysql_prep($_POST["newvideo"]);
        $query = "INSERT INTO videos (";
        $query .= " videocode";
        $query .= ") VALUES (";
        $query .= " '{$newsong}'";
        $query .= ")";
        $result = mysqli_query($connection, $query);
        if ($result) {
            // Success
            $_SESSION["message"] = "Video successfully added!";
        } else {
            // Failure
            $_SESSION["message"] = "Video failed to add!";
        }
        redirect_to("index.php?redirect=videos");
    } else {
开发者ID:rodneywells01,项目名称:NickWeb,代码行数:31,代码来源:videos.php


示例15: prevent_double_teacher_login

<?php

require_once "../includes/session.php";
require_once "../includes/db_connection.php";
require_once "../includes/functions.php";
require_once "../includes/validation_functions.php";
prevent_double_teacher_login();
$username = "";
if (isset($_POST['submit'])) {
    // Process the form
    // validations
    $required_fields = array("username", "password");
    validate_presences($required_fields);
    $username = mysql_prep($_POST["username"]);
    $password = mysql_prep($_POST["password"]);
    if (empty($errors)) {
        // Attempt login
        $found_admin = attempt_login($username, $password);
        if ($found_admin) {
            // Success. Mark user as logged in
            $_SESSION["admin_id"] = $found_admin["admin_id"];
            $_SESSION["username"] = $found_admin["username"];
            $_SESSION["teacher_last_name"] = $found_admin["teacher_name"];
            $_SESSION["context"] = "teacher";
            redirect_to("teacher_base.php");
        } else {
            // Failure
            $_SESSION["message"] = "Username/password not found.";
        }
    }
} else {
开发者ID:danieleli,项目名称:snteacher,代码行数:31,代码来源:loginfromscratch.php


示例16: count_prog_by_date_validated_chauffeur

function count_prog_by_date_validated_chauffeur($date_sql)
{
    global $connection;
    $safe_date = mysql_prep($date_sql);
    $query = "SELECT COUNT(*) AS c FROM programmed_courses WHERE course_date ='{$safe_date}' AND validated_chauffeur =1 ";
    $result = mysqli_query($connection, $query);
    confirm_query($result);
    $row = mysqli_fetch_assoc($result);
    return $row['c'];
    //
}
开发者ID:kamy333,项目名称:kamy,代码行数:11,代码来源:functions_programs.php


示例17: urlencode

        $verification_link_send = urlencode($verification_link);
        $idiot_link = urlencode(random_string());
        $email = mysql_prep($_POST['email']);
        $name = mysql_prep($_POST['name']);
        $to = $email;
        $subject = "Set Your Password";
        $message = "Hi {$username}," . "\n" . "\n" . "Click the link below to set your password." . "\n" . "http://www.acmism.org/verification.php?id={$idiot_link}&link={$verification_link_send}" . "\n" . "Thank you for joining us," . "\n" . "Team ACM.";
        $headers = 'From: ACM ISM Student Chapter <[email protected]>' . "\r\n" . 'Reply-To: ACM ISM Student Chapter <[email protected]>';
        mail($to, $subject, $message, $headers);
        $password = random_string();
        $spoj = mysql_prep($_POST['spoj']);
        $codechef = mysql_prep($_POST['codechef']);
        $hackerrank = mysql_prep($_POST['hackerrank']);
        $admission = mysql_prep($_POST['admission']);
        $member = mysql_prep($_POST['member']);
        $batch = mysql_prep($_POST['batch']);
        $branch = mysql_prep($_POST['branch']);
        $phone_number = mysql_prep($_POST['phone_number']);
        $hashed_password = sha1($password);
        $query = "INSERT INTO users (\r\n\t\t\t\t\tname, username, hashed_password, email, spoj_id, codechef_id, hackerrank_id, admission, member,  batch, branch, phone_number, verification_link\r\n\t\t\t\t\t) values (\r\n\t\t\t\t\t'{$name}', '{$username}', '{$hashed_password}', '{$email}', '{$spoj}', '{$codechef}', '{$hackerrank}', '{$admission}', '{$member}', '{$batch}', '{$branch}', '{$phone_number}', '{$verification_link}'\r\n\t\t\t\t\t)";
        if (mysql_query($query, $connection)) {
            redirect_to("login.php?log=201");
        } else {
            echo "<p>Could not create user</p>";
            //echo mysql_error();
        }
    }
} else {
    redirect_to("login.php");
}
mysql_close($connection);
开发者ID:ranaparth,项目名称:root-website,代码行数:31,代码来源:signup.php


示例18: basename

            }
            // Allow certain file formats
            // Check if $uploadOk is set to 0 by an error
            if ($uploadOk == 0) {
                echo "Sorry, your file was not uploaded.";
                // if everything is ok, try to upload file
            } else {
                if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
                    echo "The file " . basename($_FILES["fileToUpload"]["name"]) . " has been uploaded.";
                } else {
                    echo "Sorry, there was an error uploading your file.";
                }
            }
        }
        $project_desc_title = mysql_prep($_POST['project_desc_title']);
        $project_desc = mysql_prep($_POST['project_desc']);
        $dir = basename($_FILES["fileToUpload"]["name"]);
        $date = date('Y-m-d H:i:s');
        $query = "INSERT INTO projects (`project_name`,`project_desc_title`,`project_type_id`,`project_desc`,`project_cover`,`publish_date`)\nVALUES ('" . $project_name . "','" . $project_desc_title . "','1','" . $project_desc . "','" . basename($_FILES["fileToUpload"]["name"]) . "','" . $date . "');";
        file_put_contents('1.txt', $query);
        $result = mysqli_query($connection, $query);
        //this is excuted in case of insert and delete and update as well
        if ($result) {
            $message = "Success";
            file_put_contents('1.txt', $message);
            redirect_to("projects.php");
        } else {
            file_put_contents('1.txt', $query);
        }
    }
}
开发者ID:Alikhedr988,项目名称:syrianeyes,代码行数:31,代码来源:add_project.php


示例19: array

        if (!isset($_POST[$fieldname]) || empty($_POST[$fieldname]) && !is_numeric($_POST[$fieldname])) {
            $errors[] = $fieldname;
        }
    }
    $fields_with_lengths = array('menu_name' => 30);
    foreach ($fields_with_lengths as $fieldname => $maxlength) {
        if (strlen(trim(mysql_prep($_POST[$fieldname]))) > $maxlength) {
            $errors[] = $fieldname;
        }
    }
    if (empty($errors)) {
        // Perform update
        $id = mysql_prep($_GET['subj']);
        $menu_name = mysql_prep($_POST['menu_name']);
        $position = mysql_prep($_POST['position']);
        $visible = mysql_prep($_POST['visible']);
        $query = "UPDATE subjects SET menu_name = '{$menu_name}', position = {$position}, visible = {$visible} WHERE id = {$id}";
        $result = mysql_query($query, $connection);
        if (mysql_affected_rows() == 1) {
            // Success
            $message = "The subject was successfully updated";
        } else {
            $message = "The subject update failed: " . mysql_error();
        }
    } else {
        $message = "There were " . count($errors) . " errors in the form.";
    }
}
find_selected_page();
include "includes/header.php";
?>
开发者ID:jemmeliCss,项目名称:phpDevelopment,代码行数:31,代码来源:edit_subject.php


示例20: confirm_logged_in

require_once "includes/session.php";
//For creating a session, we don't use cookies "for better security"
require_once "includes/functions.php";
//Functions files
require_once "includes/db_connection.php";
//Including the database connection file
confirm_logged_in();
$contact = contact_info();
if (isset($_POST['submit'])) {
    // Process the form
    if (empty($errors)) {
        // Perform Update
        $email = mysql_prep($_POST["email"]);
        $mobile = mysql_prep($_POST["mobile"]);
        $facebook = mysql_prep($_POST["facebook"]);
        $linkedin = mysql_prep($_POST["linkedin"]);
        $query = "UPDATE contact SET ";
        $query .= "email = '{$email}', ";
        $query .= "mobile = '{$mobile}', ";
        $query .= "facebook = '{$facebook}', ";
        $query .= "linkedin = '{$linkedin}' ";
        $query .= "WHERE id = '1' ";
        $query .= "LIMIT 1";
        $result = mysqli_query($connection, $query);
        if ($result && mysqli_affected_rows($connection) == 1) {
            // Success
            $_SESSION["message"] = "Contact Info updated.";
            redirect_to("contact.php?id=8");
        } else {
            // Failure
            $_SESSION["message"] = "Contact Info update failed.";
开发者ID:aabdelfa,项目名称:ezzy-statistics,代码行数:31,代码来源:contact.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP mysql_query函数代码示例发布时间:2022-05-15
下一篇:
PHP mysql_ping函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap