[PHP] http request

2010-12-05 Thread Moses
Hi Everyone, I would like to know whether there is a http request PHP script. I would like to use in cases where a background script is running for sometime and outputs the results in PHP once the script has been executed. Thanks. musa

Re: [PHP] http request

2010-12-05 Thread Daniel Molina Wegener
On Sunday 05 December 2010, Moses jam...@gmail.com wrote: Hi Everyone, Hello... I would like to know whether there is a http request PHP script. I would like to use in cases where a background script is running for sometime and outputs the results in PHP once the script has been

Re: [PHP] http request

2010-12-05 Thread Shreyas
I am not sure if I understand the question with clarity. What exactly do you mean by a HTTP request script? Since it involves a web server to run the PHP script, the HTTP request and response will be the backbone of the whole transaction. But like I mentioned earlier, I could be seeing the

Re: [PHP] http request problem

2007-01-03 Thread Richard Lynch
On Tue, January 2, 2007 11:55 pm, Kencana wrote: I got problem in getting file content. the file is located at another server (tomcat) and it is a jsp file. i don't know why i keep getting the same error message file accessing that file but while i am trying to access to another file, from

[PHP] http request problem

2007-01-02 Thread Kencana
hi all, I got problem in getting file content. the file is located at another server (tomcat) and it is a jsp file. i don't know why i keep getting the same error message file accessing that file but while i am trying to access to another file, from another server it run perfect. this is the

Re: [PHP] http request problem

2007-01-02 Thread Kencana
hi all, by the way, the page that i am trying to get, i can open the page without any problem in IE 7 browser. Thanks Regards, Kencana -- View this message in context: http://www.nabble.com/http-request-problem-tf2911952.html#a8136297 Sent from the PHP - General mailing list archive at

Re: [PHP] http request problem

2007-01-02 Thread Curt Zirzow
On 1/2/07, Kencana [EMAIL PROTECTED] wrote: hi all, I got problem in getting file content. the file is located at another server (tomcat) and it is a jsp file. i don't know why i keep getting the same error message file accessing that file but while i am trying to access to another file, from

[PHP] HTTP request parameters do not populate variables

2004-02-01 Thread Slava Zinkovski
Hi, everybody! I've just installed PHP on my workstation and it seems as I have some trouble. The simplest code does not work! Here it is: ? print_r($HTTP_GET_VARS); print(param = . $param); ? I run it with URL like this http://localhost/myApp/test.php?param=qqq: I expect it to print

Re: [PHP] HTTP request parameters do not populate variables

2004-02-01 Thread BAO RuiXian
Slava Zinkovski wrote: [snip...] I run it with URL like this http://localhost/myApp/test.php?param=qqq: I expect it to print 'param=qqq' string, though it does not! :((( Here is the output: Array ( [param] = qqq ) Notice: Undefined variable: param in d:\phptest\test.php on line 4

[PHP] HTTP request contents

2003-10-24 Thread Hanuska Ivo
Hi everyone, I need to know, if there is a possibility to read full contents of HTTP request. I know, the response can be sent by header() function. But can I get the request of the client for server? Thank you, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] HTTP request contents

2003-10-24 Thread Nathan Taylor
Perhaps $_SERVER['REQUEST_URI'] in combination with $_SERVER['QUERY_STRING'] ? Nathan - Original Message - From: Hanuska Ivo To: [EMAIL PROTECTED] Sent: Friday, October 24, 2003 6:10 AM Subject: [PHP] HTTP request contents Hi everyone, I need to know

Re: [PHP] HTTP request contents

2003-10-24 Thread Tom Rogers
Hi, Friday, October 24, 2003, 8:10:03 PM, you wrote: HI Hi everyone, HI I need to know, if there is a possibility to read full contents of HTTP HI request. I know, the response can be sent by header() function. But can I HI get the request of the client for server? HI Thank you, HI Ivo HI --

Re: [PHP] HTTP request contents

2003-10-24 Thread Chris Shiflett
--- Hanuska Ivo [EMAIL PROTECTED] wrote: I need to know, if there is a possibility to read full contents of HTTP request. I know, the response can be sent by header() function. But can I get the request of the client for server? In a way, yes, although most of this information is nicely parsed

[PHP] HTTP Request Headers - PUHLEASE HELP!

2002-02-24 Thread SpamSucks86
I have an infinitely annoying problem. I coded a script which tracks who viewed my profile in AOL Instant Messenger. When they click on a link (AIM inserts their screen name into the URL) the script records it. However, it does not replace spaces in their screen name with %20 like a normal

RE: [PHP] HTTP Request Headers - PUHLEASE HELP!

2002-02-24 Thread Martin Towell
what about $argv ? -Original Message- From: SpamSucks86 [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 11:40 AM To: [EMAIL PROTECTED] Subject: [PHP] HTTP Request Headers - PUHLEASE HELP! I have an infinitely annoying problem. I coded a script which tracks who viewed my

[PHP] Http request

2002-01-08 Thread Sandeep Murphy
Hi, Can anyone tellme how I can do a http request to a servlet from a PHP?? I mean, I have a username and password which I want to send in a string(variable) to a Servlet which authentifies it and responses back in XML format... any suggestions?? TIA, sandeep -- PHP General Mailing List

[PHP] HTTP Request - First line

2001-02-17 Thread Javier Gil
I want to obtain the first line of the header of the HTTP Request (the request line). Is there a function to obtain this line. Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] HTTP Request - First line

2001-02-17 Thread Bojan Gajic
Try with: $HTTP_SERVER_VARS['SERVER_PROTOCOL'] $HTTP_SERVER_VARS['REQUEST_METHOD'] $HTTP_SERVER_VARS['REQUEST_URI'] HTH, bojan Javier Gil wrote: I want to obtain the first line of the header of the HTTP Request (the request line). Is there a function to obtain this line. Thanks --