_GET and _POST

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • janrom1

    _GET and _POST

    I have problem with _GET method. When I want to send information from
    formulars by _POST it works but if I want to do it by _GET it doesn't
    work. Where is the problem ? Should I put something into php.ini ? I am
    using php 5 and IIS.
    Regards,
    Roman
  • Bert Melis

    #2
    Re: _GET and _POST

    janrom1 wrote:[color=blue]
    > I have problem with _GET method. When I want to send information from
    > formulars by _POST it works but if I want to do it by _GET it doesn't
    > work. Where is the problem ? Should I put something into php.ini ? I am
    > using php 5 and IIS.
    > Regards,
    > Roman[/color]
    Maybe you have an error in your code?

    Let's see what you've been making.

    Comment

    • Dinçer Akay

      #3
      Re: _GET and _POST

      Try this if high security not problem

      $_REQUEST

      Comment

      • Alvaro G Vicario

        #4
        Re: _GET and _POST

        *** janrom1 wrote/escribió (Sat, 02 Jul 2005 17:39:17 +0200):[color=blue]
        > I have problem with _GET method. When I want to send information from
        > formulars by _POST it works but if I want to do it by _GET it doesn't
        > work. Where is the problem ? Should I put something into php.ini ? I am
        > using php 5 and IIS.[/color]

        Maybe the problem is that _GET and _POST are not methods but PHP variables.
        The methods are called GET and POST. So if you use:

        <form method="_get">

        change it to:

        <form method="get">


        --
        -- Álvaro G. Vicario - Burgos, Spain
        -- http://bits.demogracia.com - Mi sitio sobre programación web
        -- Don't e-mail me your questions, post them to the group
        --

        Comment

        Working...