32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
<?php
|
|
|
|
if( isset( $_POST[ 'Submit' ] ) ) {
|
|
// Get input
|
|
$id = $_POST[ 'id' ];
|
|
|
|
$id = mysqli_real_escape_string($GLOBALS["___mysqli_ston"], $id);
|
|
|
|
$query = "SELECT first_name, last_name FROM users WHERE user_id = $id;";
|
|
$result = mysqli_query($GLOBALS["___mysqli_ston"], $query) or die( '<pre>' . mysqli_error($GLOBALS["___mysqli_ston"]) . '</pre>' );
|
|
|
|
// Get results
|
|
while( $row = mysqli_fetch_assoc( $result ) ) {
|
|
// Display values
|
|
$first = $row["first_name"];
|
|
$last = $row["last_name"];
|
|
|
|
// Feedback for end user
|
|
$html .= "<pre>ID: {$id}<br />First name: {$first}<br />Surname: {$last}</pre>";
|
|
}
|
|
|
|
}
|
|
|
|
// This is used later on in the index.php page
|
|
// Setting it here so we can close the database connection in here like in the rest of the source scripts
|
|
$query = "SELECT COUNT(*) FROM users;";
|
|
$result = mysqli_query($GLOBALS["___mysqli_ston"], $query ) or die( '<pre>' . ((is_object($GLOBALS["___mysqli_ston"])) ? mysqli_error($GLOBALS["___mysqli_ston"]) : (($___mysqli_res = mysqli_connect_error()) ? $___mysqli_res : false)) . '</pre>' );
|
|
$number_of_rows = mysqli_fetch_row( $result )[0];
|
|
|
|
mysqli_close($GLOBALS["___mysqli_ston"]);
|
|
?>
|