Hello all I'm having a problem getting the result of just one row. Most info I've found is returning an entire array. I'm getting the word Object printed out instead the value of $result does anyone know why?
$request = "SELECT article_name FROM Articles WHERE id=1";
$result = mysql_query ($request,$connection);
<?php echo "mysql_result($result)"; ?>
$request = "SELECT article_name FROM Articles WHERE id=1";
$result = mysql_query ($request,$connection);
<?php echo "mysql_result($result)"; ?>