RE: [PHP] Multithreading for OOP PHP

2012-10-31 Thread Florian Müller
...@gmail.com > Date: Wed, 31 Oct 2012 10:59:28 +0200 > To: php-general@lists.php.net > Subject: [PHP] Multithreading for OOP PHP > > Hello Florian, > > Usually you want to run a PHP script in two different environments: > 1. inside a webserver > 2. in a command line i

[PHP] Multithreading for OOP PHP

2012-10-31 Thread Florian Müller
actually be a very nice thing, don't you think? Thank you for your answers :) Florian

Re: [PHP] Too many arrays! My head is exploding!

2012-05-29 Thread Florian Lemaitre
[0] => a ) [2] => Array ( [0] => b ) [3] => Array ( [0] => a [1] => b ) [4] => Array ( [0] => c ) [5] => Array ( [0] => a

[PHP] Function links on error and warningmessages

2012-02-03 Thread Florian Müller
Hi guys, I was wondering some time ago, why the links which are shown on error or warning (E_WARNING etc.) show relative links to an usually non-existing file. Wouldn't it be much more useful if all errors are linking to the function description on php.net? So, if I get an error with file_ex

[PHP] Way to output HTML on professional websites

2011-12-26 Thread Florian Müller
hey output it like Or is the code even generated or gotten from a database and evaluated? How does the website itself gets printet on really professional websites? Thanks for answer! Flo ====== Florian Müller florip...@hotmail.com==

[PHP] Placing the masterpassword

2011-11-01 Thread Florian Müller
Hi all I got a little question about a good application design in PHP. If I use a mysql connection for example, I have to store my mysql-password somewhere in the code. If it's just in the mysql-class, that's not that good, because if somebody changes the functionality, he'd see it. I also can't

RE: [PHP] Opening Multiple Files

2011-09-07 Thread Florian Müller
Why don't u solve it by iterating through all files and getting their filenames and then execute your file? > From: ron.pigg...@actsministries.org > To: php-general@lists.php.net > Date: Wed, 7 Sep 2011 10:21:18 -0400 > Subject: [PHP] Opening Multiple Files > > > Hi Everyone > > I am trying

Re: [PHP] Bug #51739 tricky string to float conversion

2011-09-01 Thread Florian Lemaitre
Le 01/09/2011 10:43, magic-...@damage.devloop.de a écrit : Simon J Welsh writes: On 1/09/2011, at 9:53 AM, magic-...@damage.devloop.de wrote: Am Mittwoch, 31. August 2011, 20:48:37 schrieb Shawn McKenzie: On 08/31/2011 09:03 AM, magic-...@damage.devloop.de wrote: var_dump((float)"8315e839da08

Re: [PHP] Using stand-alone PHP scripts with Drupal

2011-08-24 Thread Florian Lemaitre
l include your code, define a block and output the result of your script in that block view. Then you create a Panel and include that block in the panel. (that's the proper way to do this, you might also find some freaking hacks that do that in a few lines) What does your code do exactly

Re: [PHP] Why count() returns no error when string is given ?

2011-08-16 Thread Florian Lemaitre
Le 16/08/2011 16:50, rs...@live.com a écrit : Hello Florian, Tuesday, August 16, 2011, 4:32:39 PM, you wrote: manual : function.count.php "Returns the number of elements in/var/. If/var/is not an array or an object with implementedCountable <http://www.php.net/manual/en/class.count

Re: [PHP] Why count() returns no error when string is given ?

2011-08-16 Thread Florian Lemaitre
Le 16/08/2011 16:32, Florian Lemaitre a écrit : Le 16/08/2011 16:29, rs...@live.com a écrit : For example when I do: strlen(array(1,2,3)); php shows: Warning: strlen() expects parameter 1 to be string, array given in... but when I do: count('string'); It simply returns 1 li

Re: [PHP] Why count() returns no error when string is given ?

2011-08-16 Thread Florian Lemaitre
Le 16/08/2011 16:29, rs...@live.com a écrit : For example when I do: strlen(array(1,2,3)); php shows: Warning: strlen() expects parameter 1 to be string, array given in... but when I do: count('string'); It simply returns 1 like nothing happened. I would expect such behavior if I write

Re: [PHP] Problem with inserting numbers...

2011-08-11 Thread Florian Lemaitre
Le 11/08/2011 13:08, Tamara Temple a écrit : On Aug 10, 2011, at 8:22 PM, Jason Pruim wrote: while ($num != "1") { Problem is here ^ You are testing a numeric $num with a string "1", which $num will *never* equal. Leave off the quotes on the number. Hum, I suggest you read this

RE: [PHP] saving sessions

2011-08-04 Thread Florian Müller
But please do not use cookies to store a password as code! Cookies are human readable with some add-ons Check like this: if someone registers, insert it into a table: Then, if someone wants to log in, use like this: If you want to store something into cookies, use a name which is not

RE: [PHP] Best editor?

2011-08-03 Thread Florian Müller
Ahm . oh ^^ so, for the size of projects which I am realising, there is no problem of live editing. And even for learning PHP, it's a good idea to make it live on a server because if he wants to learn it, he does not have a website he edits on which has a really big traffic. So this would b

RE: [PHP] Best editor?

2011-08-03 Thread Florian Müller
t Giddings wrote: > > > Notepad!!! LOL.. I use netbeans but eclipse is nice. A lot of it is > > personal opinion. > > > > On Wed, Aug 3, 2011 at 9:46 AM, Florian Müller > >wrote: > > > > > > > > Maybe an adittional infor

RE: [PHP] Best editor?

2011-08-03 Thread Florian Müller
Maybe an adittional information: PSPad is completely freeware and portable. You can download it right here: http://pspad.en.softonic.com/ This would be the best idea if you can't run a local server, because if there is an editor with this functionality built in, he'd have to bring a little lo

RE: [PHP] Best editor?

2011-08-03 Thread Florian Müller
I'm using PSPad since one year, and I'm very happy with it. With your description, I think it is the most simple way with it: Connect it with a webserver, and then you can edit all files right on the server, so if you save, they are live. PSPad is actually even a portable program, and there

Re: [PHP] $_POST value disappearing?

2011-08-02 Thread Florian Lemaitre
Le 02/08/2011 17:04, Donovan Brooke a écrit : Hello!, I must not be understanding something as I would expect 'f_file' to show up in the print_r below.: --index.php-- --/index.php-- try *: * ;)

[PHP] File concurrent file access

2011-07-22 Thread Florian Lemaitre
access a file being edited by a cron task. Does PHP do all the stuff itself or is there something to do about it ? PS: I only use file_get_contents, file_put_contentsand unlink on files. Best regards. Florian

RE: [PHP] Your language sucks because...

2011-07-13 Thread Florian Müller
Well . do you have any hobbies or such? I think if you like it to complain about languages sucking and so on, please do NOT spam this mailing list with this really USELESS content. There are some people out there who are using these languages for some good reasons, and I guess they give a f*

Re: [PHP] Re: str_replace around a character??

2011-07-13 Thread Florian Lemaitre
Le 13/07/2011 16:59, Shawn McKenzie a écrit : On 07/13/2011 02:54 AM, Karl DeSaulniers wrote: Hello All, I am needing some assistance. I am trying to add some Cc and Bcc to a mail script I have. On the form I have instructions for each to be separated by a comma + a space. In an all perfect worl

Re: [PHP] POST headers empty when using SSLProxyEngine

2005-11-20 Thread Florian Effenberger
ow. Of course, I'll do! :) Thanks Florian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Webservices and PHP?

2005-09-14 Thread Florian P.
Hi. What kind of webservices do you mean??? Do you mean Guestbooks? Or do you mean Forums? Or what else? Greets ""Gustav Wiberg"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hi there! > > I want to learn about creating webservices with PHP? (Is it possible with > PHP 4.

Re: [PHP] Little Problem with my Guestbook

2005-09-14 Thread Florian P.
. Florian P. "Jasper Bryant-Greene" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Florian Paucke wrote: > > I need some help from you, because, I'm creating a > > guestbook. But I have a little problem. > > > > I

[PHP] Little Problem with my Guestbook

2005-09-13 Thread Florian Paucke
are in the database? And the cursor from the database are jumping to the next entry. Sorry for my bad english. :) MFG Florian Paucke -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP as CGI: Denial of Service?

2004-09-28 Thread Florian Effenberger
pache 1.3 and 2.0. Thanks in advance, Florian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP OpenSSL on the fly EAP/TLS certificates generation

2004-06-02 Thread Florian
ell script. I'm not sure it is clear ? If anybody wants I can send or show the shell scripts. -- ciAo, Florian > [EMAIL PROTECTED] < > http://alphacore.net < This message was sent using IMP, the Internet Messagin

[PHP] PHP as CGI becomes a zombie when loaded too often

2004-05-28 Thread Florian Effenberger
Sorry for posting this again and again, but I still experience this problem and there seems to be no way for me to solve it. I've got confirmation from others that this problem is not only mine, so please take the time to read this. I've tried Apache 1.3 and 2.0, both on Linux 2.4. I've tried using

[PHP] limit number of CGI processes

2004-04-16 Thread Florian Effenberger
already fiddled around with some configuration variables, but it didn't help. It always created a whole lot of CGI childs that used up all memory... I run Apache 2.0 on Linux 2.4. Thanks! Florian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Question for PHP.net

2004-03-22 Thread Florian Hoenl
Dear PHP.net, I have got a question!!! I`ll develop a new PHP Site and threr is a problem with Hyperlinks!!! How can I use "index?nav=Webmaster"?? Whats the source code for this funktion Best Regards Florian Hoenl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] query on indexserver via php ado

2003-01-31 Thread Florian Grabke
hi we try to migrate our intranet from asp to php the last problem is our indexserver. we are using the ado functions of php to make a connection and a query on the indexserver but the recordset is empty code: $objQuery = new COM("ixsso.Query")or die("Cannot start Query"); $objutil = new COM("

RE: [PHP] WinNT extensions

2002-01-25 Thread Florian Clever
d_file=php-4.1.1-Win32.zip) you can simply include it in php.ini. So I do not at all understand the provider's problem. I would not recommend using dl(), because a) I think it has been deprecated more or less and b) it is not so fast. Florian > > I thought imap functionality was in

RE: [PHP] Outreaching (announcement)

2002-01-24 Thread Florian Clever
This sounds pretty nice. Is there a place to look at some screen shots or even a live demo, etc.? Florian http://fc.clever-soft.com/ > -Original Message- > From: Bogdan Stancescu [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 24, 2002 7:14 PM > To: [EMAIL PROTECTE

[PHP] detecting extension (XSLT) Version

2002-01-24 Thread Florian Clever
somebody was implementing extension versioning. But I believe that will probably only cover the PHP API of this extension. thanks, Florian Florian Clever http://fc.clever-soft.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Re: [PHP-DB] Help with update...

2001-08-18 Thread Florian Blaser
Well, might not be the good answer, since it's been a long time I haven't used mysql. But, does mysql is case sensitive on table names ? try using albums instead of ALBUMS in your update query. Just my .002 cents Florian Le Samedi, 18 Août 2001 18.21, vous avez écrit : > I'm

Re: [PHP] accents and postgresql

2001-08-18 Thread Florian Blaser
locale. It could help. Well, at least the locale is right... > > Saludos... :-) Thanks a lot for your answer, Saludos ... :-P Florian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] accents and postgresql

2001-08-18 Thread Florian Blaser
ave written. Has anybody else had this problem, or does someone sees where I could watch further, I'm quite stuck ? Thanks a lot for your replies. Florian Blaser -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [E

[PHP] AW: WAP and PHP

2001-01-23 Thread Florian Clever
It worked for my test scripts. Check out the attached file. You will have to skip over some of the DB abstraction class stuff. good Luck, Florian Florian Clever [EMAIL PROTECTED] http://www.Clever-Software-Solutions.de/ PGP Key @ ldap://certserver.pgp.net/ > -Ursprüngliche Nachri