I have stumbled across a issue with a site i am submitting to uni tomorrow when i posted it to their server i found out that i have now mysql database(i had requested it and was given the login details but it ended up being a mssql database)
So by the scope of the project i have some database calls which are pretty much like
$sql = "SELECT * FROM `products` WHERE id = '".$id."'";
$result = mysql_query($sql) or die("Sorry there seems to be a problem with the database");
$dbObject = mysql_fetch_array($result);
So how would this translate to mssql is their a mysql to mssql guide somewhere?
So by the scope of the project i have some database calls which are pretty much like
$sql = "SELECT * FROM `products` WHERE id = '".$id."'";
$result = mysql_query($sql) or die("Sorry there seems to be a problem with the database");
$dbObject = mysql_fetch_array($result);
So how would this translate to mssql is their a mysql to mssql guide somewhere?