Advertisement
george-goga

Db.php

Sep 10th, 2022
1,081
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?
  2. $connect=mysqli_connect("localhost", "root", "", "Users")or die(mysqli_error());
  3.  
  4. $select="SELECT 'id', 'login', 'password', 'email' FROM 'User' ";
  5. $result=mysqli_query($connect, $select);
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement