RE: [PHP] really weird problem

2002-02-14 Thread Jaxon
Lars, Thanks, you were right that IE was dumping things. I think there must have been some wacky line breaks or somesuch. Re-typing the file by hand produced success. cheers, jaxon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] really weird problem

2002-02-14 Thread Lars Torben Wilson
On Thu, 2002-02-14 at 11:15, Jaxon wrote: > hi folks, can someone shed some light here? > > i've got a file called index.php with the following contents: > > > echo "debug output: index.php loaded"; > if (is_null($page_name)) $page_name="about"; > echo "debug: page name = $page_name"; > > $na

[PHP] really weird problem

2002-02-14 Thread Jaxon
hi folks, can someone shed some light here? i've got a file called index.php with the following contents: "; if (is_null($page_name)) $page_name="about"; echo "debug: page name = $page_name"; $nav_array = array ("about => About", "reservations => Reservations",

Re: [PHP] really weird

2002-01-08 Thread Henning Sprang
Chris Grigor wrote: > Hi Henning > > If I use modification time, how would I use keep state before exiting (I > have never done that aggghhh!) i didn't do that before, too, I just can imagine how it should work :) before exiting or right after sending the mail you would need to write the ac

Re: [PHP] really weird

2002-01-08 Thread Henning Sprang
Chris Grigor wrote: > Right now your in the picture this is okay to check if the mailbox is above > the size of 0. But what I really need help with is, say for instance I get 1 > message into the mailbox and the script runs, I only want it to run once for > that message, however if another messag

[PHP] really weird

2002-01-08 Thread Chris Grigor
Hello everyone my name is Chris and I have just subscribed to ask a question Currently running Redhat 7.2, php4.0.6.7, apache 1.3.22-2, mysql3.23.41-1 Now I have a script that runs every 10 mins in the crontab, that checks to see if a file size is 0 or bigger.. if it is bigger then it mails me

Re: [PHP] Really weird problem: cross-server databasing *g*

2001-09-02 Thread Andrew Brampton
cript on Server A Does this wierd idea make sense? Andrew - Original Message - From: "Markus Mayer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, September 02, 2001 3:42 AM Subject: [PHP] Really weird problem: cross-server databa

[PHP] Really weird problem: cross-server databasing *g*

2001-09-01 Thread Markus Mayer
Hi folks! Let's say you have two servers, on the first one ("A") you have your website containig all those nice php scripts and co but only a crazy small database (2 megs), on the second one ("B") you have a really big database available but the problem, that the provider won't allow you to acces

Re: [PHP] really weird html - was "extract() help"

2001-02-24 Thread Jaxon
gak. everyone ignore me. idiocy is setting in this late at night. stoopid me put a tag INSIDE the loop. and thanks CC Zona for the pointer on the var_dump() - very helpful! regards, jaxon On 2/25/01 2:38 AM, "Jaxon" <[EMAIL PROTECTED]> wrote: > I replaced extract() with $row[] - much better.

[PHP] really weird html - was "extract() help"

2001-02-24 Thread Jaxon
I replaced extract() with $row[] - much better. Now I have the strangest thing happening - the html formatting only applies to the first iteration in the loop, even though it shows up in the html source!! regard, jaxon html generation: for ($i = 1; $i <= 5; $i++)