I have a question pertaining to the best way to organize a number of records in a series. Basically I have different records that are categorized under a series title. Under the series title there may be around 10 records with different sub-titles.
Now at the moment I have it programmed so that the series titles are shown once on my main page and when clicked they are sent within a query string to the viewSeries.php page where it is compared to all other series titles in my table like so:
$sql= "SELECT * FROM notes WHERE series = '$seriesID' ORDER BY resource_date DESC ";
This way all records that contain the same series name are brought up.
However I would like to know if there is a better way to go about doing this other then using the query string. I sometimes get errors when my series title contains quotations.