I'm not sure what your goal is, but here is a short example of how to use UIWebView
to interact with a PHP document via URL variables.
// Objective-C
UIWebView *scoreContent;
scoreContent = [[UIWebView alloc] init];
NSString *email = @"[email protected]";
NSString *webURL = [NSString stringWithFormat:
@"http://yourdomain.com/objc.php?email=%@",
email];
[scoreContent loadRequest:
[NSURLRequest requestWithURL:[NSURL URLWithString:webURL]]
];
Then in the PHP file you could just do something like this:
<?php
//objc.php
echo 'Your email is: ' . $_GET['email'] . '.';
?>
I would have compiled the Objective-C to make sure it works because I just copied it from a game I made, but if it doesn't work let me know and I'll fix it if you can't.