I need to pass post data straight to a url. Basically what I am trying to do is test my site and I would like to pass a bunch of data via php. Does anyone know how. Here is the information
<form action = "somefile.php" method = "post">
<input type = "radio" name = "option" value = "1">Option 1</radio>
<input type = "radio" name = "option" value = "2">Option 2</radio>
<input type = "submit" name = "submit" value = "submit">
</form>
Basically I would like to insert a bunch of votes for option 1 and the same for option 2. Any suggestions? Thanks,