CGI

Post Reply
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

CGI

Post by Enrico Maria Giordano »

Dear friends, I have a problem to get CGI to work (any language, I tried
xHarbour and C, it used to work the last time I tried it...). I can write the
results to the browser (stdout) but I cannot receive anything from stdin:

localhost/mysite/test.htm

Code: Select all

<HTML>
  <BODY>
    <FORM METHOD = "post" ACTION = "test.exe?Param=Test">
      <INPUT TYPE = "submit" VALUE = "Send">
    </FORM>
  </BODY>
</HTML>
TEST.EXE is:

Code: Select all

#include "Simpleio.ch"


FUNCTION MAIN()

    ?? "Content-type: text/html"
    ?
    ? "<HTML>"
    ? "<BODY>"
    ? "Received: " + FREADSTR( 0, 256 ) + "<BR>"
    ? "</BODY>"
    ? "</HTML>"

    RETURN NIL
The result is an empty string.

"Received:"

What am I missing?

Thank you in advance for any help.

EMG
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Enrico,

I have moved it to this section, as I understand it is important for more users :)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Re: CGI

Post by Enrico Maria Giordano »

Solved:

Code: Select all

<HTML>
  <BODY>
    <FORM METHOD = "post" ACTION = "test.exe">
      <INPUT TYPE = "text" NAME = "Param">
      <INPUT TYPE = "submit" VALUE = "Send">
    </FORM>
  </BODY>
</HTML>
EMG
Post Reply