How do I pass form data to my PHP program?

  • Context: PHP 
  • Thread starter Thread starter Math Is Hard
  • Start date Start date
  • Tags Tags
    Data Form Php
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 6K views
Messages
4,663
Reaction score
36
I am working on a simple example of trying to pass form data to my php program.

I am not sure how to pass the variable that holds the data the user enters.

Here's what I've tried. (note, it only looks right in Firefox, but that's what we're supposed to be writing it for).

http://www.pic.ucla.edu/~jctaylor/callhello3.htm

and this is my php script:

#!/usr/local/bin/php
<?php
echo $_GET['hello'];
?>

Thanks for any help!
(oh, and I am using jquery libraries - forgot to mention)
 
Last edited by a moderator:
on Phys.org
$_GET referes to the URL query string. A URL's query string is anything that comes after a '?' character.

For example,

http://www.pic.ucla.edu/~jctaylor/callhello3.htm?hello=goodbye

- Warren
 
Last edited by a moderator:
the problem is this line where you're trying to pass the contents of the keywords text field to your script
Code:
$("//div#content").load("hello.php?hello=keywords");
The way it's written, you're telling hello.php to run with a variable called hello set to "keywords".

try something like
Code:
$("//div#content").load("hello.php?hello="+this.keywords);
which would (should) append the query string with the value from the keywords element.

Oh, and the script will break if you enter more than one word. Working around that I'll leave as an exercise for you.
 
Since your input object only has a name property (and no ID)
Code:
<INPUT name=keywords>

You can use the following to get its value:
Code:
document.getElementsByName('keywords')[0].value

So in your code you'd have:
Code:
<SCRIPT type=text/javascript>
      $(document).ready(
        function(){
          $("//p#b1/a").click(
            function(){
              $("//div#content").empty();
              $("//div#content").load("hello.php?hello=" + document.getElementsByName('keywords')[0].value);

            }
          )
        }
      )
    </SCRIPT>

If you give your input control an ID:
Code:
<INPUT name=keywords id=keywords>

You can use the following to get its value:
Code:
document.getElementById('keywords').value;

Or you can use jquery:
Code:
$("input#keywords").val()

And you'd have, after giving your control an ID:
Code:
<SCRIPT type=text/javascript>
      $(document).ready(
        function(){
          $("//p#b1/a").click(
            function(){
              $("//div#content").empty();
              $("//div#content").load("hello.php?hello=" + $("input#keywords").val());

            }
          )
        }
      )
    </SCRIPT>
 
Last edited:
oh, OHHH My GOODNESS! It's working! Oh, wow - cool! per your suggestion, I gave the INPUT an ID property and used jquery to get the value.

http://www.pic.ucla.edu/~jctaylor/callhello3.htm

Thanks so much, Job!:smile: :smile: :smile:
 
Last edited by a moderator: