Forum Moderators: open
Thanks again for all the help!
Do you know PHP? If so, it shouldn't be that hard.
If not, you might want to hire someone, although this thread could be enough for you:
Basics of extracting data from MySQL using PHP [webmasterworld.com]
wp_posts table (it might have a different extension at the front, depending on how you installed it). you can grab the post's title, text, excerpt or whatever you want from there.
$query = "SELECT * FROM wp_posts ORDER BY post_date LIMIT 1"; $returns = mysql_query($query); $result = mysql_fetch_row($returns); and then...
$post_title = $result[5]; $post_excerpt = $result[7];
$query = "SELECT * FROM wp_posts ORDER BY post_date DESC LIMIT 1";
$returns = mysql_query($query);
$result = mysql_fetch_row($returns);
$post_title = $result[5];
$post_excerpt = $result[7];
echo $post_title;
THANK YOU AGAIN!