If you just want to insert a list of questions just call the database. I was working on a iphone version to just view the questions and answers.
I used this to grab the last 20 questions and link to them. Still working on the answers part.
<?php
// Make a MySQL Connection
mysql_connect("localhost", "user", "password") or die(mysql_error());
mysql_select_db("dbname") or die(mysql_error());
// Get all the data from the "qa_posts" table
$result = mysql_query("SELECT * FROM qa_posts where type='Q' ORDER BY postid DESC LIMIT 0, 20")
or die(mysql_error());
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row
echo '<li>';
echo '<a href="
http://whatever.com/';
echo $row['postid'];
echo '">' . $row['title'] . '</a>';
echo '</li>';
echo 'posted by: ' . $row['userid'] . '<br /><br />';
}
?>