示例#1
0
<?php

$dbCon = mysqli_connect('localhost', 'praveer922', 'prav33r', 'blogdb') or die(msqli_error());
示例#2
0
<?php

/**
 * Created by PhpStorm.
 * User: 1516734
 * Date: 22/03/2016
 * Time: 10:08
 */
include "db_connect.php";
$bugName = $_post["bugName"];
$BugSummary = $_post["BugSummary"];
$BugCategory = $_post["BugCategory"];
$sql = "INSERT INTO bugs (bugName, BugSummary, BugCategory ) VALUES ('{$bugName}','{$BugSummary}','{$BugCategory}')";
if (mysqli_query($db, $sql)) {
} else {
    echo "Error:" . $sql . "<br>" . msqli_error($db);
}
header("location:index.php");
?>

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
-->
<html>
    
    <head>
        <meta charset="UTF-8">
示例#3
0
<?php

$con = mysqli_connect("localhost", "root", "", "ndere_boys") or die(mysqli_error());
$studentFName = mysqli_real_escape_string($con, $_POST['studentFName']);
$studentMName = mysqli_real_escape_string($con, $_POST['studentMName']);
$studentLName = mysqli_real_escape_string($con, $_POST['studentLName']);
$studentDOB = mysqli_real_escape_string($con, $_POST['studentDOB']);
$gender = mysqli_real_escape_string($con, $_POST['gender']);
$studentCounty = mysqli_real_escape_string($con, $_POST['studentCounty']);
$formerInstitution = mysqli_real_escape_string($con, $_POST['formerInstitution']);
$classtoJoin = mysqli_real_escape_string($con, $_POST['classtoJoin']);
$parentName = mysqli_real_escape_string($con, $_POST['parentName']);
$mobileNumber = mysqli_real_escape_string($con, $_POST['mobileNumber']);
$email = mysqli_real_escape_string($con, $_POST['email']);
$County = mysqli_real_escape_string($con, $_POST['County']);
mysqli_connect("localhost", "ndere_boys", "") or die('Error: ' . msqli_error());
mysqli_select_db($con, "ndere_boys");
if ($studentFName == "" || $studentMName == "" || $studentLName == "" || $studentCounty == "" || $formerInstitution == "" || $classtoJoin == "" || $parentName == "" || $mobileNumber == "" || $email == "" || $County == "") {
    echo "Please fill the empty field!";
} else {
    $sql = "insert into enrolment(studentFName, studentMName, studentLName, studentDOB, gender, studentCounty, formerInstitution, classJoin, parentName, mobileNumber, email, County ) values ('{$studentFName}','{$studentMName}', '{$studentLName}', '{$studentDOB}','{$gender}','{$studentCounty}','{$formerInstitution}','{$classtoJoin}','{$parentName}','{$mobileNumber}','{$email}','{$County}')";
}
if (!mysqli_query($con, $sql)) {
    die('Error: ' . mysqli_error($con));
}
echo "Record successfully inserted!<br>";
echo "Database updated with: {$studentFName}','{$studentMName}', '{$studentLName}', '{$studentDOB}','{$gender}','{$studentCounty}','{$formerInstitution}','{$classtoJoin}','{$parentName}','{$mobileNumber}','{$email}','{$County}'<br>";
echo "You have updated database successfully!<a href=enrolment.html>Click Here to go back";