Hope someone can help me with this issue...
I'm running a query from my database:
$comp = mysql_query("SELECT company FROM user WHERE username='credo'");
And further down i have:
<td align="center" class="row2">Welcome, <?php echo $comp ?></td>
but when I run the page I'm getting this:
Welcome, Resource id #5
instead of displaying the actual value of $comp - which should be rwarchitect (Welcome, rwarchitect). What does that mean, and why is it displaying that instead of the actual value of the "company" cell?