[PHP] PHP visual programming example

2005-12-17 Thread Edward Patel
Hi, I have just put together a small visual programming example that generate PHP code for our Designer. Feel free to try. http://www.memention.com/designer/example/page.php Share and enjoy! Edward

[PHP] PHP programmers from hyderabad

2005-12-17 Thread Vikram Kumar
hi! We are looking for PHP programmers from hyderabd. If you are an experienced PHP programmer, and have experience of developing calendar or dairy , message board application, please send your CV to [EMAIL PROTECTED] All PHP programmers aare welcome to apply!. Best regards, Vikram.

Re: [PHP] Fatal error 'Unable to read from thread kernel pipe' when using mail() function

2005-12-17 Thread Stut
I assume the lack of response to this means that nobody has come across this problem before? Any pointers would be helpful - I'm losing hair fast!! Cheers. -Stut On 16/12/05, Stut [EMAIL PROTECTED] wrote: Hi All, I've just upgraded the PHP port installation on my server to v4.4.1 and the

[PHP] Callbacks in XML Parser

2005-12-17 Thread Amol Hatwar
Hi, Is there a way in PHP5 where I can use the xml_parser's xml_set_element_handler() inside a class definition like so: xml_set_element_handler($this-xmlParser, $this-startTag, $this-endTag); For me, this code doesn't seem to work. I have to use functions in the global scope. Regards, ah --

[PHP] Re: PHP and Apache 2.2.0

2005-12-17 Thread Manuel Lemos
Hello, on 12/16/2005 12:36 PM Kevin McBride said the following: I am curious to know if there are plans to make a module for Apache 2.2.0. I couldn't find it in the anonymous CVS, but if it's already there, can someone point to me where it is? Use the same as for Apache 2.0 . -- Regards,

Re: [PHP] Callbacks in XML Parser

2005-12-17 Thread comex
xml_set_element_handler($this-xmlParser, $this-startTag, $this-endTag); xml_set_element_handler($this-xmlParser, array($this, 'startTag'), array($this, 'endTag')); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP and Apache 2.2.0

2005-12-17 Thread Kevin McBride
Manuel Lemos wrote: Use the same as for Apache 2.0 . I get garbled code errors; tried it before I even posted to the list. Here's an excerpt from the Apache download page: Apache 2.2 add-in modules are not compatible with Apache 2.0 or 1.3 modules. If you are running third party add-in

[PHP] Re: PHP and Apache 2.2.0

2005-12-17 Thread Manuel Lemos
Hello, on 12/17/2005 04:58 PM Kevin McBride said the following: Use the same as for Apache 2.0 . I get garbled code errors; tried it before I even posted to the list. Here's an excerpt from the Apache download page: Apache 2.2 add-in modules are not compatible with Apache 2.0 or 1.3

[PHP] Function Overloading

2005-12-17 Thread Labunski
PHP does not support function overloading. So, is there any other way of getting a number of parameters(variables) passed to a function? aka. function fruits($apple, $banana, $kiwi, $grape){ #should (somehow) output 4 } OK. if it was an array, than I could use count($array), but now I'm

Re: [PHP] Function Overloading

2005-12-17 Thread tg-php
If all you want to do is pass an unknown number of arguments to a function, this looks like it demonstrates what you're doing: ?php function foo() { $numargs = func_num_args(); echo Number of arguments: $numargs\n; } foo(1, 2, 3);// Prints 'Number of arguments: 3' ? Found it at:

RE: [PHP] Problem on Instalation ~ several module unable to downl oad

2005-12-17 Thread Bagus Nugroho
Sorry, just reply it.. I was tring to put php.ini on c:\php or c:\windows, still fail to load several modules. Then, I'm check to load module by module and notified almost all of database module(mysql, mysqli,oracle,sybase,oci) unable to load when php start_up.(only postgreSQL is able to

[PHP] Someone please help me with this PHP script.

2005-12-17 Thread Erik Johnson
I do not know why this isn't working, but it would be very helpful if someone looked over it. ? $defaultpage = http://lom.game-host.org/uploads/erik/;; If($page == NULL) { $page = one; } if($page == one) { Echo htmlheadtitlePage One/title/headbodyIt works!!bra href=\ . $defaultpage .

Re: [PHP] Someone please help me with this PHP script.

2005-12-17 Thread Robert Cummings
On Sat, 2005-12-17 at 23:05, Erik Johnson wrote: I do not know why this isn't working, but it would be very helpful if someone looked over it. ? $defaultpage = http://lom.game-host.org/uploads/erik/;; If($page == NULL) { $page = one; } What is this magical $page variable? Did you

Re: [PHP] Someone please help me with this PHP script.

2005-12-17 Thread Wolf
What is it doing, or not doing? Try changing the ? to ?php and see if that works. Robert Erik Johnson wrote: I do not know why this isn't working, but it would be very helpful if someone looked over it. ? $defaultpage = http://lom.game-host.org/uploads/erik/;; If($page == NULL) {

Re: [PHP] Fatal error 'Unable to read from thread kernel pipe' when using mail() function

2005-12-17 Thread Curt Zirzow
On Fri, Dec 16, 2005 at 03:07:20PM +, Stut wrote: Hi All, I've just upgraded the PHP port installation on my server to v4.4.1 and the mail function has stopped working. I created a script that simply calls the mail function to send a test email ad this is what I get when I run it...

Re: [PHP] Weird html - No real cr

2005-12-17 Thread Curt Zirzow
On Sat, Dec 17, 2005 at 12:03:02AM +0100, Gustav Wiberg wrote: Hi there! Why do I get this kind of ... why don't cr work? There is now newline as when you view source in an ordinary html-file... I hope you guys understand what I mean... DOWN BELOW IS THE PHP CODE! :-) Are you