CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Threaded View

  1. #2
    Join Date
    May 2002
    Posts
    10,943

    Re: PHP Basics - Frustrated

    Code:
    <form method "POST" action="sayhello.php">
    Your Name: <input type="text" name="user">
    <input type="submit" value="Say">
    </form>
    You are missing one minor thing. The "=" sign between "method" and "POST".

    Code:
    <form method="post" action="sayhello.php">
    Your Name: <input type="text" name="user">
    <input type="submit" value="Say">
    </form>
    Last edited by peejavery; April 15th, 2005 at 11:58 AM.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured