Re: [PHP] Re: I don't want to use include

2004-06-23 Thread Ulrik S. Kofod
If calling the backup function can wait till after your output is generated, then you can echo/print the output call flush(); and then call the backup routine. Then the backup won't apper to be slowing down as it is running after the output is send to the user. brgds QT sagde: Dear sirs,

Re: [PHP] Regular Expressions Tester/designer

2004-06-20 Thread Ulrik S. Kofod
Tom Rogers sagde: This works with perl regular expressions http://weitz.de/files/regex-coach.exe Thanks! Great tool! I really needed something like that. It just seems like it can't handle $1, $2 ...$x in the replacement string? Isn't there a way to make that work ? -- PHP General

Re: Re: [PHP] Regular Expression - it works but uses way too much memory ?

2004-06-19 Thread Ulrik S. Kofod
Robin Vickery sagde: The S modifier that you're using means that it's storing the studied expression. If the regexp changes each time around the loop then over 3 iterations, that'll add up. See if removing that modifier helps at all. The S modifier wasn't needed, I added it because I

Re: [PHP] Regular Expression - it works but uses way too much memory ?

2004-06-18 Thread Ulrik S. Kofod
is that I call preg_replace a little more than 3 times and that causes quite a lot of memory to be allocated. Doesn't anybody know if this is a problem in preg_replace or is there a better maillist/forum for this kind of questions? Any answer will be appreciated :) Ulrik S. Kofod sagde

Re: [PHP] Regarding variable reference

2004-06-16 Thread Ulrik S. Kofod
Justin Patrin sagde: Ulrik S. Kofod wrote: Why are you using eval? Eval is slow and is a hack... Just do: $y = $$x; if(isset($y)) { echo p$x:$y/p; } } True ! I just tested it with both eval and $$, and $$ seems to be about 3 to 4 times faster

Re: [PHP] RE: Text message

2004-06-16 Thread Ulrik S. Kofod
Lester Caine sagde: R'Twick Niceorgaw wrote: Is this some kind of virus? anybody else receiving it? I have received 3 mails from this address through the list today all with a .bmp attachment It has passed clam av + fprot on linux as well as norton on windows but still want to double

Re: [PHP] Fw:

2004-06-15 Thread Ulrik S. Kofod
I'm not sure but I think that it is because you give the port number :3308 in the connect. the connection is not established the same way as when you just give just localhost and mysql might not see user the same way. I think it will work if you grant access to '[EMAIL PROTECTED]' or

Re: [PHP] Regarding variable reference

2004-06-15 Thread Ulrik S. Kofod
[EMAIL PROTECTED] sagde: Hi, I have variables called Cookie1 to Cookie35. I would like to print the values of Cookie1 to Cookie35 using for loop. Could anybody correct the below code to print the variables. =for($i=1;$i34;$i++) { $x=Cookie.$i;

Re: [PHP] Fw:

2004-06-15 Thread Ulrik S. Kofod
Dennis Freise sagde: On Tue, 15 Jun 2004 10:24:45 +0530 Sriranganath [EMAIL PROTECTED] wrote: $conn = mysql_connect(localhost:3308,user,password); Warning: Access denied for user: '[EMAIL PROTECTED]' (Using password: YES) in /var/www/html/whatnew/a.php on line 3 Maybe that's because the

[PHP] Regular Expression - it works but uses way too much memory ?

2004-06-14 Thread Ulrik S. Kofod
$replace = /^(([a-z]+?[^a-z]+?){.($count).})(.$typedmask.)(.*)/iS; $with = $1error-start sourcetext=.$corr['sourcetext']. id=.$corr['id']. group=\.$corr['grupper'].\ class=\.$corr['ordklasse'].\ corrected-from=\.$corr['typed'].\ corrected-to=\.$corr['corrected'].\$3error-end

Re: [PHP] small and big letter in WHERE statement

2004-06-14 Thread Ulrik S. Kofod
John Nichel sagde: QT wrote: Dear Sirs, When I use where statement, I see that there is no meaning small and big letter. Without looking small caps or big, result comes back. But I want to match only small letters. How can I do that? Best REgards Where statement for what? MySQL? If