tags:

views:

53

answers:

2

I am trying to post to a remote url from a local html file on my desktop, but the server doesn't seem o be receiving any post data?

A: 

A form tag with action set to any web address will send to it:

<form method="post" action="http://example.com/myscript.php"&gt;

Take another look over your code to make sure you haven't forgotten anything. Showing us the HTML might help answers.

nickf
+1  A: 

Oopsy, The designer didn't preserve the form input name attributes... (I just assumed they did)