Instead of hard coding the user and password into a php script with the command mysql_connect, is it possible to provide this when the php page is requested? If so, how can this be done?
<html>
<body>
<?php
$db = mysql_connect("localhost", "user", "mypassword"
...
?>
<body>
<html>
Thank you.
<html>
<body>
<?php
$db = mysql_connect("localhost", "user", "mypassword"
...
?>
<body>
<html>
Thank you.