[PHP] Hiding the remote server

2002-08-15 Thread Michael
Is it possible to write a script that: 1) gathers information 2) upon clicking a "submit" button, "posts" this information to a remote server for processing. 3) the remote server, by default, will generate results and display on it's own web page generated dynamically. 4) can we "intercept" this

Re: [PHP] Hiding the remote server

2002-08-15 Thread Jason Wong
On Friday 16 August 2002 11:51, Michael wrote: > Is it possible to write a script that: > 1) gathers information yes > 2) upon clicking a "submit" button, "posts" this information to a remote > server for processing. yes > 3) the remote server, by default, will generate > results and display

[PHP] Re: A Question about PHP upload file

2002-08-15 Thread David Robley
In article <002a01c24474$33be4d80$[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > SXMgdGhlcmUgaXMgYSB2b2x1bWUgbGltaXR0ZWQgZm9yIFBIUCB1cGxvYWQgZmlsZQ0KdXNpbmcg > SFRUUD8NCkkgaGVhcmQgb2YgdGhlcmUgaXMgYSA4LTlNYiBsaW1pdHRlZCxpcyBpdCB0cnVlPw0K > SXMgdGhlcmUgYSBtZXRob2QgdG8gc29sdmUgaXQ/DQo= > If you c

[PHP] Re: How retrieve database data from email?

2002-08-15 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hello People: > > I have my pages built in PHP / Mysql, all working ok, but now I need > solve a problem I don't know how to solve or even how search about. Case > this problem was already discussed in this list, I would be grateful if >

[PHP] Re: Search Engine

2002-08-15 Thread David Robley
In article <001401c244aa$d31e1b90$ff1ffea9@billsgate>, [EMAIL PROTECTED] says... > Whats wrong with this code? > > $arrSearch = explode(" ", $_REQUEST['string']); > $RSQuery = "SELECT * FROM referenzen_tbl"; > if (strlen($arrSearch) > 0) { // Überhaupt einschränken? > $Query .= " WHERE (";

Re: [PHP] PHP and Memory...

2002-08-15 Thread Analysis & Solutions
On Tue, Aug 13, 2002 at 01:57:54PM +0200, MyBox wrote: > > function testfunc($var1,$var2) > { > ...many calculation and variables > return $result; > } > > then on call number 12 the script exits whith error-message: > Fatal error: Allowed memory size of 8388608 bytes exhausted Exhausting 8 megs

Re: [PHP] Writing to a file that's not PHP_SELF

2002-08-15 Thread Analysis & Solutions
On Tue, Aug 13, 2002 at 04:02:51PM -0230, Kondwani Spike Mkandawire wrote: > > $file = fopen("Counter.txt", "r+"); > $counter = fread($file, filesize("Counter.txt")); > fwrite($file, "$counter", strlen($counter)); ... snip ... > // For some reason the updated value is not written > // to C

Re: [PHP] [Followup] Exploding Zip Codes! (Using PHP's explode function)

2002-08-15 Thread Analysis & Solutions
On Tue, Aug 13, 2002 at 12:13:35PM -0700, Keith Posehn wrote: > > I have the code together now to put it all the zip codes into and array--but > now I need to add those zip codes to a sql statement for the WHERE clause. > > SELECT * FROM [table] > WHERE zip="[all the darn zips listed here]" $qu

Re: [PHP] upgrading

2002-08-15 Thread Analysis & Solutions
On Tue, Aug 13, 2002 at 02:58:02PM -0400, Alex Shi wrote: > > I am currently have PHP 4.0.4p11 and Apache 1.3.19 running > on RH Linux 7.1. Now I am thinking of upgrade my PHP to 4.1.2-7 If you're upgrading, don't waste your time installing very old versions with significant vulnerabilities in

[PHP] Captcha wrapper

2002-08-15 Thread Roger Thomas
wonder if anyone has developed a wrapper around captcha. or is there an alternative way ? -- roger __ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Re: Sending via stand alone SMTP on win98

2002-08-15 Thread Jason Wong
On Friday 16 August 2002 01:30, FoxRings / Michael wrote: > I want to send mail under win98, > and I know that this is the proper solution... > > ---snip > Hope this work: > --> edit your php.ini and type your SMTP server > > [mail function] > ; For Win32 only. > SMTP = yoursmtpserver.

[PHP] Parse Error in Last Line of PHP Script

2002-08-15 Thread Thomas Meinke
Hello! My problem is a Parse Error in the last line of the script. I checked all the brackets { and semicolons ; but I did`nt find any error. Perhaps you can help me. Cu Thomas Here is the Code: -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/un

Re: [PHP] Parse Error in Last Line of PHP Script

2002-08-15 Thread Jason Wong
On Friday 16 August 2002 14:13, Thomas Meinke wrote: > Hello! > > My problem is a Parse Error in the last line of the script. I checked all > the brackets { and semicolons ; but I did`nt find any error. > Perhaps you can help me. Try matching up your '' and "". -- Jason Wong -> Gremlins Associa

<    1   2   3