darubillah Posted October 26, 2009 Share Posted October 26, 2009 hi, I am new to PHP, i wanna ask that is their any free script available through which I can export data from one db to another I want export from wordpress db from table wp_post from colom post_content & post_title to table entitles to colom description & title respectively any help will be appreciated Thanks Shayan Abbas Quote Link to comment https://forums.phpfreaks.com/topic/179044-export-data-from-one-database-to-another/ Share on other sites More sharing options...
dgoosens Posted October 26, 2009 Share Posted October 26, 2009 phpMyAdmin should be able to help you out: http://www.phpmyadmin.net/home_page/index.php Quote Link to comment https://forums.phpfreaks.com/topic/179044-export-data-from-one-database-to-another/#findComment-944648 Share on other sites More sharing options...
darubillah Posted October 26, 2009 Author Share Posted October 26, 2009 acctually I am looking for a PHP script which can do that for me Quote Link to comment https://forums.phpfreaks.com/topic/179044-export-data-from-one-database-to-another/#findComment-944651 Share on other sites More sharing options...
darubillah Posted October 26, 2009 Author Share Posted October 26, 2009 please help me Quote Link to comment https://forums.phpfreaks.com/topic/179044-export-data-from-one-database-to-another/#findComment-944684 Share on other sites More sharing options...
gevensen Posted October 26, 2009 Share Posted October 26, 2009 you have to write one, heres something to get the old noggin stirred for example $result=mysql_query("SELECT * FROM `table1` "); if($result) { while($row=mysql_fetch_array($result); { mysql_query("INSERT INTO `table2` ........ "); // not actual command but select the data you want to take from one table to another } } Quote Link to comment https://forums.phpfreaks.com/topic/179044-export-data-from-one-database-to-another/#findComment-945066 Share on other sites More sharing options...
fenway Posted October 31, 2009 Share Posted October 31, 2009 acctually I am looking for a PHP script which can do that for me Then you've come to the wrong place/forum. Quote Link to comment https://forums.phpfreaks.com/topic/179044-export-data-from-one-database-to-another/#findComment-948398 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.