Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
- <meta charset="utf-8">
- <script type="text/javascript">
- $(document).ready(function(){
- $("#entrada").click(function(){
- $.post("pagephp.php",
- {
- name:"Bernardo Vieira",
- city:"Ponte de Lima"
- },
- function(data,status){
- alert("Data: " + data + "\nStatus: " + status);
- });
- });
- });
- </script>
- </head>
- <body>
- <input id="txtentrada" placeholder="texto entrada" ></input>
- <input type="submit" id="entrada"></input>
- </body>
- </html>
- //pagephp.php
- <?php
- if(isset($_POST["name"])) {
- echo "Nome: ". $_POST["name"];
- //save info
- }
- else {
- echo "Nada!";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement