I think you would get a better response if you showed that you tried.
When I read your message it kinda sounds like you are asking the list
to do your class project for you. I'm not saying that is what it is
but that's what it sounds like.
Here is the broad strokes of what you need to do:
1) Get all the contacts.
// find all contacts with 'Bob' in any name field
var options = new ContactFindOptions();
options.filter="";
options.multiple=true;
var fields = ["*"];
navigator.contacts.find(fields, onSuccess, onError, options);
The above code should get all the contacts with all the fields populated.
2) Don't use XML, the contacts data is returned as JSON data so stick with JSON.
3) In the success method of contacts.find write the data out to a file
using a FileWriter.
http://docs.phonegap.com/en/2.8.0/cordova_file_file.md.html#FileWriter
Simon Mac Donald
http://hi.im/simonmacdonald
On Fri, Jun 14, 2013 at 2:21 PM, bobz7 <
g96...@gmail.com> wrote:
> bump! Someone help me out!
>
> --
> -- You received this message because you are subscribed to the Google
> Groups "phonegap" group.
> To post to this group, send email to
phon...@googlegroups.com
> To unsubscribe from this group, send email to
>
phonegap+u...@googlegroups.com
> For more options, visit this group at
>
http://groups.google.com/group/phonegap?hl=en?hl=en
>
> For more info on PhoneGap or to download the code go to
www.phonegap.com
>
> To compile in the cloud, check out
build.phonegap.com
> ---
> You received this message because you are subscribed to the Google Groups
> "phonegap" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
phonegap+u...@googlegroups.com.
> For more options, visit
https://groups.google.com/groups/opt_out.
>
>