This website works better with JavaScript.
Home
Explore
Help
Sign In
gergo314
/
Public
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Update 'mysql.php'
master
gergo314
5 years ago
parent
e3d84d8c4e
commit
612fb6b33f
1 changed files
with
5 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
mysql.php
+ 5
- 1
mysql.php
View File
@@ -1,5 +1,9 @@
<?PHP
<?PHP
$query = "SELECT * FROM lofasz";
$servername = "localhost";
$username = "user";
$password = "pass";
$query = "SELECT * FROM database.table";
$conn = mysqli_connect($servername, $username, $password);
$conn = mysqli_connect($servername, $username, $password);
// Check connection
// Check connection
if ($conn) {
if ($conn) {
Write
Preview
Loading…
Cancel
Save