Hi, I'm in Germany and I got it, too. I get those about once in 6 month ...
nothing to worry about, is it??
Regards
Original-Nachricht
> Datum: Wed, 20 Jul 2011 07:12:58 -0400
> Von: Tim Thorburn
> An: php-general@lists.php.net
> Betreff: Re: [PHP] Fwd: ezmlm warning
> On 7
Hi,
this is the solution I came up with, that is over 10 times faster than my
first attemps.
Tested @31,871 entries in table 'picture' and 222,712 entries in table
'picture_attrib_rel'.
Old Version:
SELECT * FROM picture as p
INNER JOIN picture_attrib_rel as pr1
ON (p.pid = pr1.pid)
INNER
ards,
Jan
-Original Message-
From: joerg.bru...@sun.com [mailto:joerg.bru...@sun.com]
Sent: Wednesday, June 16, 2010 2:49 PM
To: MYSQL General List
Cc: Jan Reiter
Subject: Re: [PHP] SQL Syntax
Hi!
Daniel Brown wrote:
> [Top-post.]
>
> You'll probably have muc
Richard, Carlos, Simcha and Nigel,
Thank you all for your answers on this matter. When I read Simcha's mail, it
hit me like a hammer!
That was what I was looking for! BUT: I have to see, that this creates way
to much overhead, as I have to use INNER JOIN instead of LEFT JOIN, or an
equvalent su
Hi folks!
I'm kind of ashamed to ask a question, as I haven't followed this list very
much lately.
This isn't exactly a PHP question, but since mysql is the most popular
database engine used with php, I figured someone here might have an idea.
I have 2 tables. Table A containing 2 fields.
gards,
Jan
From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk]
Sent: Wednesday, June 16, 2010 3:09 AM
To: Jan Reiter
Cc: php-general@lists.php.net
Subject: Re: [PHP] SQL Syntax
On Wed, 2010-06-16 at 02:58 +0200, Jan Reiter wrote:
Hi folks!
I'm kind of ashamed to ask a question, as I h
I have to agree, your example works fine for me. For testing I used the
latest stable Release of server2go with PHP 5.2.10.
Or do you want to use something like that:
class o
{
protected $arr = array('a'=>0);
function o($n){$this->arr['a'] = $n;}
function getA(){return $th
x27;
texid'][$i]);
}
unset($matches);
return true;
}
Regards
-Original Message-
From: Shawn McKenzie [mailto:nos...@mckenzies.net]
Sent: Wednesday, September 09, 2009 7:57 PM
To: Jan Reiter
Cc: php-general@lists.php.net
Subject: [PHP] Re: preg_match()
trying to avoid. But maybe that's
what I have to after all if there is no other way.
Thanks & Regards,
Jan
-Original Message-
From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk]
Sent: Wednesday, September 09, 2009 6:21 PM
To: Jan Reiter
Cc: php-general@lists.php.net
Subject: R
Good Afternoon.
This shouldn't be too complicated, but I can't come up with a solution for
the problem right now. It's about RegEx in PHP (5.2)
Is there a way to capture ALL sub elements of an expression like
preg_match('@a(?[0-9])*b@' ,"a2345678b" , $matches); ??
This would produce (bel
mysql ...
Greets,
Jan
-Original Message-
From: Jan Reiter [mailto:[EMAIL PROTECTED]
Sent: Friday, August 31, 2007 12:07 AM
To: 'Andras Kende'; PHP Mailing List
Subject: RE: [PHP] crypt salt question
Hi!
How did you do the comparison with the PG_SQL database?? I believe
Hi!
How did you do the comparison with the PG_SQL database?? I believe there is
a UNIX function, able to retrieve the salt from a crypt string, or one that
can do the comparison, without a slat given. But I'm not quite sure. I'm
gonna investigate that. But how did you compare passwords before, whe
Hi!
You don't have to end your string when placing an array value. {} will tell
the parser to interpret the text between as a variable. Try:
echo "";
Jan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi!
I'm not quite sure if I got you right, but if you want a simple button to
print the current web-page use the browsers built-in printing function. Just
link to javascript:window.print(); to bring up the printing dialogue.
Is this a simple html-table, or is it something special? Or render it int
Hi there!
I spent the last 4 Years ('03-'07) as an Officer with the German Air Force
collecting massive experience with large university networks (programming,
maintenance) and on electronic warfare live training exercises (management,
IT Officer), but I studied Space and Aeronautics and did not f
Maybe this is what you are searching for:
$images = array();
$data = "blah src=blah.png ";
preg_match_all("/\< *[img][^\>]*[.]*\>/i", $data, $matches);
foreach($matches[0] as $match)
{
preg_match_all("/(src|height|width)*= *[\"\']{0,1}([^\"\'\ \>]*)/i",
$match, $m);
$images[] = a
Ummh, no!
(int) and (integer) perform a C style atoi() conversion.
(int)"blah" => integer 0
(int)"" => integer 0
(int)"1"=> integer 1
(int)"12" => integer 12
("1" == 0) => false
("blah" == 0) => true
( (int)$userValues['afterDark'] === 0 ) only is true, if
$userValues['aft
fail!;-) So you have to use === to
keep the types of the values!
Jan
-Original Message-
From: Jim Lucas [mailto:[EMAIL PROTECTED]
Sent: Friday, August 10, 2007 1:47 AM
To: Jan Reiter
Cc: [EMAIL PROTECTED]; php-general@lists.php.net
Subject: Re: [PHP] I know this is not easy and I'm not stupid bu
Hi!
Phil:
Still I am curious what var_dump($userValues['afterDark']); at line 102.5
would return.
I managed to recreate that fault with
$var['test'] = "blah";
echo ($var['test']);
if( $var['test'] == 0)
{
echo "ok";
}
//this returns blahok -- not expected.
In my case Var_dump() ret
D'oh!
The solution is so simple and clean that it almost hurts. I didn't see it in
the first approach!
There is a way to go all this, without using file() or file_get_contents()!
Cuz this would require to use a URL wrapper to retrieve compiled code, which
would cost overhead on the local webserve
You've got a point about that.
Try
http://localhost/path/to/webdir";);
?>
First ... If you see your own webpage it's okay, else don't mess with it.
-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Monday, August 06, 2007 2:51 AM
To: Jan Reiter
Nice to hear that!
If you expect heavy traffic on the site using that script you might want try
to save some DNS and http connection overhead by stating the url with
http://localhost/ and so on. Given that the server's OS is unix based, it
may also work to execute the php-script like a shell scrip
Hi!
If you want file_get_contents() to open the compiled data, force the server
to compile it first. ;-)
Do not open the file from filesystem, use the ULR
(http://server/flash_frames.php?...).
For this fopen() wrappers have to be enabled.
http://www.php.net/manual/en/function.file-get-contents.ph
Hi!
Try using imagealphablending() to blend your logo onto the original image.
This function should not require the user browser to be capable of blending
functions as would using the alpha channel of a png inmage or such ...
Jan
-Original Message-
From: Tom Ray [Lists] [mailto:[EMAIL
s ... ;-)
Jan
-Original Message-
From: tedd [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 04, 2007 5:02 PM
To: Jan Reiter; 'Crab Hunt'; php-general@lists.php.net
Subject: RE: [PHP] Problem with getting time in EST
Jan:
That's the problem, it doesn't work.
I have mine s
Hi!
Try setting the timezone to one of the cities inside it from this list:
http://www.php.net/manual/en/timezones.america.php
DST will be taken into account automatically.
Hope that helps.
Jan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.
Right!
With zlib compression ob_start() or similar seems to get called before the
user
script execution. I'm not quite sure why. Anyhow ob_get_level() returns 2
after
the ob_start() is called for the first time in the script. You can avoid the
error
with
while (ob_get_level() > 1) {
o
Hi!
I'm not quite sure what you are trying to do ...
Why do you use output buffering in your code, when you turn it off in the
htaccess directive??
php_flag output_buffering Off
The code worked for me. But I tested it without your htaccess settings ...
Jan
-Ursprüngliche Nachricht-
V
28 matches
Mail list logo