[PHP] PHP Reference

2010-08-14 Thread Karl DeSaulniers
Hello all, I was wondering, can you reference php in a url string like you can javascript. EG: javascript:someFunction() Can you do something similar in php like php:someFunction() I am thinking that you can not do this, but was wondering if there was something like that. Thanks, Karl

Re: [PHP] PHP Reference

2010-08-14 Thread Peter Lind
On 14 August 2010 08:08, Karl DeSaulniers k...@designdrumm.com wrote: Hello all, I was wondering, can you reference php in a url string like you can javascript. EG: javascript:someFunction() Can you do something similar in php like php:someFunction() I am thinking that you can not do

Re: [PHP] PHP Reference

2010-08-14 Thread Karl DeSaulniers
That is what I thought. Thank you for confirming. Karl On Aug 14, 2010, at 1:54 AM, Peter Lind wrote: On 14 August 2010 08:08, Karl DeSaulniers k...@designdrumm.com wrote: Hello all, I was wondering, can you reference php in a url string like you can javascript. EG:

Re: [PHP] PHP Reference

2010-08-14 Thread Andre Polykanine
-general php-general@lists.php.net Date: Saturday, August 14, 2010, 9:08:20 AM Subject: [PHP] PHP Reference Hello all, I was wondering, can you reference php in a url string like you can javascript. EG: javascript:someFunction() Can you do something similar in php like php:someFunction() I am

Re: [PHP] PHP Reference

2010-08-14 Thread Karl DeSaulniers
: [PHP] PHP Reference Hello all, I was wondering, can you reference php in a url string like you can javascript. EG: javascript:someFunction() Can you do something similar in php like php:someFunction() I am thinking that you can not do this, but was wondering if there was something like

Re: [PHP] PHP Reference

2010-08-14 Thread Ashley Sheridan
On Sat, 2010-08-14 at 01:57 -0500, Karl DeSaulniers wrote: That is what I thought. Thank you for confirming. Karl On Aug 14, 2010, at 1:54 AM, Peter Lind wrote: On 14 August 2010 08:08, Karl DeSaulniers k...@designdrumm.com wrote: Hello all, I was wondering, can you

Re: [PHP] PHP Reference

2010-08-14 Thread Karl DeSaulniers
On Aug 14, 2010, at 5:19 AM, Ashley Sheridan wrote: On Sat, 2010-08-14 at 01:57 -0500, Karl DeSaulniers wrote: That is what I thought. Thank you for confirming. Karl On Aug 14, 2010, at 1:54 AM, Peter Lind wrote: On 14 August 2010 08:08, Karl DeSaulniers k...@designdrumm.com wrote:

Re: [PHP] PHP Reference

2010-08-14 Thread tedd
At 1:08 AM -0500 8/14/10, Karl DeSaulniers wrote: Hello all, I was wondering, can you reference php in a url string like you can javascript. EG: javascript:someFunction() Can you do something similar in php like php:someFunction() I am thinking that you can not do this, but was wondering if

Re: [PHP] PHP Reference

2010-08-14 Thread Karl DeSaulniers
Thanks tedd. On Aug 14, 2010, at 7:45 AM, tedd wrote: At 1:08 AM -0500 8/14/10, Karl DeSaulniers wrote: Hello all, I was wondering, can you reference php in a url string like you can javascript. EG: javascript:someFunction() Can you do something similar in php like php:someFunction() I

[PHP] PHP-reference

2008-05-16 Thread Daniel Kressler
Hi! I want to know, if it's allowed to write an own online reference for PHP, with own examples and so on? I'm looking forward to hearing from you. Greetings from Germany Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP-reference

2008-05-16 Thread Daniel Brown
On Fri, May 16, 2008 at 5:24 PM, Daniel Kressler [EMAIL PROTECTED] wrote: Hi! I want to know, if it's allowed to write an own online reference for PHP, with own examples and so on? Hello, fellow Daniel. ;-P Absolutely! In fact, you're encouraged to write references and examples for

Re: [PHP] PHP-reference

2008-05-16 Thread Daniel Kressler
Daniel Brown [EMAIL PROTECTED] wrote: On Fri, May 16, 2008 at 5:24 PM, Daniel Kressler [EMAIL PROTECTED] wrote: Hi! I want to know, if it's allowed to write an own online reference for PHP, with own examples and so on? Hello, fellow Daniel. ;-P Absolutely! In fact, you're

[PHP] php reference behavior

2002-12-17 Thread 22 manopohuji
hi, i'm running into some weird behavior with php references. i distilled it down to some test code below: ?php $array = array( 'name' = 'dean' ); $var1['arrayref'] = $array; $var2 = $var1; echo var1:\n; print_r( $var1 ); echo var2:\n; print_r( $var2 ); $var1['arrayref'] = NULL;