Hello,
I am trying to query an SQL Server database from a php page. I am using the following code:
$sql="SELECT [Adjust] FROM dbo.[ProjectData] WHERE ([ProjectNumber] = '".$_GET[pn]."')";
$res = mssql_query($sql, $conn);
$row = mssql_fetch_assoc($res);
echo sprintf($row["Adjust"]);
This gives me a query value string SELECT [Adjust] FROM dbo.[ProjectData] WHERE ([ProjectNumber] = '1077') . When I execute this query in SQL Server Management Studio I get the correct result, but the above code is returning a null value. I know that my connection string is good. If anyone could help me out I would appreciate it.
Thanks,
Dave