Re: [PHP-DEV] ActivePHP behavior

2002-06-16 Thread moshe doron
> I'm not sure if will work; let me know > if it does (I haven't tried that yet). well it doesn't i used 'onclick' instead. but in combination of $document->write() its crash the browser,or just not working just try that code: $GLOBALS["document"]->write(" cli

Re: [PHP-DEV] ActivePHP behavior

2002-06-12 Thread Wez Furlong
Try $GLOBALS["window"]->document->write("xxx"); or just $window->document->write("xxx") if you are in the global scope anyway. $GLOBALS["document"]->write("xxx") might work at some point (maybe already: I can't remember right now). I'm not sure if will work; let me know if it does (I haven't tr

Re: [PHP-DEV] ActivePHP behavior

2002-06-11 Thread moshe doron
that line $GLOBALS["window"]->$document->write("why that alert doesn't show?"); should be: $GLOBALS["window"]->alert("why that alert doesn't showed?"); -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] ActivePHP behavior

2002-06-11 Thread moshe doron
coz ActivePHP is under development, and there is no release (ie: i have to compile it by myself) && no document, i considerd the behavior i reported as bug, or maby considered missing property we *must* have to make the use of that activescript realy useable as client side web script. that behavi

Re: [PHP-DEV] ActivePHP behavior

2002-06-10 Thread [EMAIL PROTECTED]
I don't think this is the proper forum for this question. This list is for those interested in the development of PHP itself, not simply PHP development. That said, I think that's an html problem: you may have forgotten to close off your "" anchor tag with "". You should also provide some text

[PHP-DEV] ActivePHP behavior

2002-06-10 Thread moshe doron
Hi All since Wez on vacation(?) i'm asking u all hopefully someone already sniffed around ActivePHP. i'm searching for the equivalent code for that JavaScript: // this code print link that click on it call js function function kkk(){ //Do some code } document.write(""); that code does