How to move only the selected content from one drupal installation to other drupal installation ???
priyanka_seth - July 30, 2009 - 06:31
How can I migrate my drupal content(only which i have selected) from one drupal installation to another installation. I don’t want to use backup and migrate module because it transfer the whole content but, I just want to move selected content which is not possible by back up and migrate module.
Regards
plzz help i m beginner

=-=
copy and paste it. Ultimately and especially as a begginner, you would likely break stuff by manually trying to do it in the database.
i have created a form, how to move it
I have created a form in webform module.So how can i move it to another computer.Just the form not the other thing's.
=-=
your best bet is to rebuild it.
cant rebuild every form
Suppose i have made 50 forms.Rebuilding dem again on another computer is 100% crap idea.
does any one have sme gud idea
You could
You could http://drupal.org/project/node_export
And a look on the module specified there
ex:
Node Export now supports bulk node operations from the admin/content/node page or using Views Bulk Operations. For a more advanced approach to bulk import/export of nodes use the Views Bonus module to export a CSV of nodes in a View and then import the CSV with Node Import.So learn something instead.
Then your option is to learn SQL and the Drupal API, and a lot of other things, and figure out which tables and rows you need to keep and which you want to discard. It takes some skill.
You can try some of the import/export tools like migrate ... but like VeryMisunderstood says, you are more likely to break things if you use tools like that without knowing what you are doing. That would be a really crap idea.
I'd maybe use devel.module to get a data dump of the forms I need, then maybe patterns.module to re-import it. That works. But you'd have to know some PHP and be able to look at some Drupal internals like node_save().
If that all sounds like too much work ... then copy & paste is better for beginners.
.dan.