<?php include ( "wp-config.php" ) ; require_once (ABSPATH.'wp-blog-header.php'); global $wpdb; $sql="SELECT ID FROM db_posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY ID DESC "; $myrows = $wpdb->get_results($sql);
foreach ($myrows as $b) {
echo '
<tr>';
echo '
<td>'.get_the_permalink($b->ID).'</td>