Jump to content

Recommended Posts

I testing  my work using WAMP and phpMyAdmin. i have a question concerning on how tp establish a password. The code to open the db is shown below.

 

<?
error_reporting(E_ERROR | E_PARSE | E_CORE_ERROR);

$host = "localhost";
$dbName="membership;"
$user = "root";
$passWord="";

$cxn = mysqli_connect($host, $user, $passWord, $dbName );
	or die ("Could not make a connection. Please try again later..");

 

Ihope someone can help.

 

 

Create a new user account using the Create User syntax and then use that user instead of "root" for your website.  "Root" should never be used as the web user, you should always use a more limited account so that if your site is ever compromised, the attacker cannot delete your entire database.

 

-Dan

  • 3 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.