Is there a way to populate text field in webview?

I’m just wondering if when a user goes to a webpage if I can fill in a text field on the page automatically?

The only way I’ve found to do this is to include a parameter into the URL I’m calling for the web view.

e.g. opening a webview to point to http://www.mysite.com/?myfield=Insert This Text

In PHP (my weapon of choice for server side) I’d pick up that parameter with a $_REQUEST[‘myfield’] and populate it into the HTML.

The only way I’ve found to do this is to include a parameter into the URL I’m calling for the web view.

e.g. opening a webview to point to http://www.mysite.com/?myfield=Insert This Text

In PHP (my weapon of choice for server side) I’d pick up that parameter with a $_REQUEST[‘myfield’] and populate it into the HTML.