We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1604b3 commit bc3030eCopy full SHA for bc3030e
.gitignore
@@ -0,0 +1,2 @@
1
+config.php
2
+.idea/
crud.php
@@ -1,15 +1,17 @@
<?php
-$host = '127.0.0.1';
3
-$user = 'root';
4
-$password = null;
5
-$database = 'php-benchmarks';
6
-
+/**
+ * @param string $message
+ */
7
function error_500($message)
8
{
9
header('HTTP/1.1 500 Internal Server Error');
10
exit($message);
11
}
12
+ * @param mysqli $mysqli
13
+ * @param int $line
14
15
function show_mysqli_error(mysqli $mysqli, $line)
16
17
if ($mysqli->error) {
0 commit comments