I am very new to php so please bear with me if this is simple, but I am stumped.
<?php
require('config.php');
$db = mysql_connect($dbhost, $dbuser, $dbpass) or die(mysql_error());
mysql_select_db($dbname,$db) or die(mysql_error());
$title=mysql_query("select title from links");
$title2=mysql_num_rows($title);
?>
This tells me how many titles I have in total, but I need to beable to show what those title descriptions are, if that makes sense?
Please help and thank you in advance!