what is the http script for an execute post action?

these are the parameters that need to get passed to the server:

<form enctype="multipart/form-data" action="newreply.php" name="vbform" method="post" onSubmit="return validate(this)">
<input type="hidden" name="s" value="">
<input type="hidden" name="action" value="postreply">
<input type="hidden" name="threadid" value="76930">
<input type="hidden" name="title" value="">
<input type="hidden" name="iconid" value="0">
<input type="hidden" name="parseurl" value="yes">
<input type="hidden" name="email" value="">
<input type="hidden" name="disablesmilies" value="">
<input type="hidden" name="closethread" value="">
<input type="hidden" name="hiddenreply" value="">
<input type="hidden" name="signature" value="yes">
<input type="hidden" name="rating" value="0">

along with the field (name="message")

make any sense? I'm not sure if the php code will take it as a url, though.
 
did you just pull that from the HTML source? I was looking around in there and saw some stuff like this, but I figured there might have been something you could indeed type into the address bar to execute the action.
 
I pulled it from the source.

I'm not sure if there's a clickable url to post, but it would probably be something like so:

http://www.ultimatemetal.com/forum/newreply.php?s=&action=postreply&threadid=76930&title=&parseurl=yes&disablesmilies=&closethread=&signature=&rating=&message=

with values filled in where necessary, of course. make sense? I dunno, try screwing around and see if it works.