initial commit with apps from course repo
This commit is contained in:
36
quotes/get.php
Normal file
36
quotes/get.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
$link = mysqli_connect($_ENV["DATABASE_SERVICE_NAME"],$_ENV["DATABASE_USER"],$_ENV["DATABASE_PASSWORD"],$_ENV["DATABASE_NAME"]);
|
||||
if (!$link) {
|
||||
http_response_code (500);
|
||||
error_log ("Error: unable to connect to database\n");
|
||||
die();
|
||||
}
|
||||
|
||||
$query = "SELECT count(*) FROM quote";
|
||||
$result = $link->query($query);
|
||||
if (!$result) {
|
||||
http_response_code (500);
|
||||
error_log ("SQL error: " . mysqli_error($link) . "\n");
|
||||
die();
|
||||
}
|
||||
|
||||
$row = mysqli_fetch_array($result);
|
||||
mysqli_free_result($result);
|
||||
|
||||
$id = rand(1,$row[0]);
|
||||
|
||||
$query = "SELECT msg FROM quote WHERE id = " . $id;
|
||||
$result = $link->query($query);
|
||||
if (!$result) {
|
||||
http_response_code (500);
|
||||
error_log ("SQL error: " . mysqli_error($link) . "\n");
|
||||
die();
|
||||
}
|
||||
|
||||
$row = mysqli_fetch_array($result);
|
||||
mysqli_free_result($result);
|
||||
|
||||
print $row[0] . "\n";
|
||||
|
||||
mysqli_close($link);
|
||||
?>
|
||||
Reference in New Issue
Block a user