1

I have a simple example form myForm.php

<html>
<head>
<title>Curling and Enjoying?</title>
</head>
<body>
<form action="print.php" method="post">
   <p>First name: <input type="text" name="firstname" /></p>
   <p>Last name: <input type="text" name="lastname" /></p>
   <input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>

And the a php script which handles the POST action by simply printing the values entered in the two inputs on the previous page, print.php

<?php
   echo("First name: " . $_POST['firstname'] . "<br />\n");
   echo("Last name: " . $_POST['lastname'] . "<br />\n");
?>

If possible, how can I use cURL to get a correct HTML response by submitting arguments to the server when posting data to the form

When I run the command:

$ curl -d "firstname=Ray&lastname;=Charles" http://mysiteurl.com/myForm.php

I get only the HTML from myForm.php

1
  • You might want to curl print.php not myForm.php Commented Sep 11, 2014 at 2:38

1 Answer 1

3

The submit target should be print.php but not myForm.php.

$ curl -d "firstname=Ray&lastname=Charles" http://mysiteurl.com/print.php
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.