Sorry, I am not proficient with DB's in php. Can you show me how I could fit this into what I am using to query?
Here is what I am using currently. The $sa_reference is my var I set up to hit the cat I need, then I would just need to try and show the last post in that cat that had say the word "football" in the subj.
`<?php
query_posts("category_name='$sa_reference'");
while (have_posts()): the_post(); ?>
<h2>
<?php the_title();?>
</h2>
Posted by
<?php echo("<b>"); the_author(); echo("</b>"); echo(" on "); the_date(); echo(" at "); the_time(); ?>
<?php the_content(); ?>
<p>
<?php endwhile; ?>`
I would really really appreciate it!