it’s a serialized() PHP array. take one, run it through unserialize(), then print_r the contents. that’ll give you an idea of what it contains.
I think EE should be able to regenerate these on its own, however.
Just to make sure you’re setting up the relationship correctly, this is what goes where:
0) if you don’t have a weblog entry yet, you’ll need to create that first… not in the scope of this thread
1) create a new row in exp_relationships:
- rel_parent_id is the entry_id of the entry with the relationship custom field
- rel_child_id is the entry_id of the entry being targeted by the relationship custom field
- rel_type should be ‘blog’ when relating weblog entries
2) edit the parent entry’s exp_weblog_data row…
- field_id_XX pertaining to your relationship custom field needs to be set with the rel_id of the row we just made in exp_relationships
I believe that is the minimum that needs to be done to set up a relationship that will work with the weblog:entries tags.