Search found 4 matches

by shawn
Wed Jan 26, 2005 5:31 pm
Forum: Coding Questions
Topic: GZIP Decompression in memory
Replies: 1
Views: 1123

GZIP Decompression in memory

Hi,

I need a function that decompresses gzip compressed data in memory (no zip command that decompresses .zip archives).

I need that for deflating gzip inflated http pages (gzip compression).
Is there a solution, I didn't find any here in the forum.

Thanks!
by shawn
Mon Jan 24, 2005 11:56 pm
Forum: Coding Questions
Topic: HTTP POST and GET method
Replies: 5
Views: 5650

got it to work

Hi,

got it to work. This is quick and dirty, but works...



server$ = "x.x.x.x" ; IP address
host$ = "www.yourdomain.com" ; Domain name
target$ = "/test.php" ; Specific program
referer$ = "http://www.google.de/" ; Referer
port.l = 80 ; Port

post$ = "test1=bla&test2=foo"
length = Len(post ...
by shawn
Mon Jan 24, 2005 3:01 pm
Forum: Coding Questions
Topic: HTTP POST and GET method
Replies: 5
Views: 5650

POST solution

Hi,

thanks! I found several GET method solutions in the forum here, e.g. yours. But I need the POST, too.

The PHP Script on the server side reads the the data from the $_POST variable, so the $_GET is unset and it will not work. I can't modify the server script because it's not mine. I'll need a ...
by shawn
Sun Jan 23, 2005 9:22 pm
Forum: Coding Questions
Topic: HTTP POST and GET method
Replies: 5
Views: 5650

HTTP POST and GET method

Hi there!

I searched this forum a lot, but can't get a solution for my problem:

I need to do a HTTP Request, both GET and POST methods. Is there a finished solution for this somewhere?

I want to load a page from a webserver as a string, and want to put back data which requires doing a POST ...