Interview Question in Sql Server 2005
Interview Question :: Different methods for creating tables using SQL Server 2005 |
Well you can use a php script
e.g
<?php
$db = mysql_connect("localhost","USERNAME","PA...
if (!$db)
{
die('Unable to connect: ' . mysql_error());
}
// Add the code in here.
mysql_close($con);
?>
or this code:
<?php
mysql_connect("localhost", "USERNAME", "PASSWORD") or die(mysql_error());
echo "Connected to Database! ";
?>
You're also able to do it manually. |
|
|
|

Loading ...