- Joined
- Dec 20, 2008
- Messages
- 7
- Reaction score
- 0
This is just a script that allows you to use a mysql query on your website.
<?
$user="root";
$password="MYSQL Pass";
$database="localhost";
mysql_connect(localhost,$user,$password);
@mysql_select_db($database) or die( "Failed!");
$query="MYSQL Command";
mysql_query($query);
mysql_close();
?><br>
If it says Failed above this then it is Failed. <br>
If you don't then it has been executed<br>
<b>Made by TicoTico1337</b>