Quantcast
Channel: Mysql – S V N Labs Softwares
Viewing all articles
Browse latest Browse all 25

Importing data from non-wordpress mysql database

$
0
0
Hits: 2237  You have to create an import php file to get the Questions/Answers from a non-wordpress database and bring them into posts in wordpress. Question Table <?php /// non-wordpress database connection string here require('./wp-load.php'); $results = mysql_query("SELECT * FROM questions"); while ($row = mysql_fetch_assoc($results)) {     $post_information = array( 'post_title' => wp_strip_all_tags( $row['question'] ), 'post_content' => … Continue reading Importing data from non-wordpress mysql database

Viewing all articles
Browse latest Browse all 25

Trending Articles