<?php
$query =
mssql_query("
SELECT UserID
FROM ordnn_Forum_Posts
");
if(mssql_num_rows($query) > 0){
while($r=mssql_fetch_array($query)){
echo "<pre>";
print_r($r);
echo "</pre>";
}
} else {
echo mssql_get_last_message();
}
?>
Okay, I'm just trying to simply grab and display the UserID from ordnn_Forum_Posts. I'm getting this error:
Changed database context to 'outlawracingcom'.
I've looked around a little bit and noticed some references saying it is just a message not an actual error. If this was the case, I would be able to at least see/get my information. I just get the error and a white page to follow it.