Made me wonder as well why Joe wanted this. Or rather, I can see why he 
wants it, but not how he wants to do it.
Perhaps install php api as a XPCOM?

Matthew Wilson wrote:
> Surely PHP doesn't work like this, it's interpreted on the server.
>
> Matthew
>
>
> InBasic wrote:
>   
>> Hi
>> Use this for adding HTML/JS/PHP/...:
>>
>> data="\
>> <script type='text/javascript'>\n\
>>     alert('Alert from JS')\n\
>> </script>\n\
>> <b>Text from HTML & add some PHP in this way...</b>\n\
>> ";
>> addHTML(data);
>>
>>
>>
>> function addHTML (html) {
>>     var document=gBrowser.selectedBrowser.contentDocument ;
>>     if (document.all)
>>         document.body.insertAdjacentHTML ('beforeEnd', html);
>>     else if (document.createRange) {
>>         var range = document.createRange();
>>         range.setStartAfter(document.body.lastChild);
>>         var cFrag = range.createContextualFragment(html);
>>         document.body.appendChild(cFrag);
>>     }
>>     else if (document.layers) {
>>         var X = new Layer(window.innerWidth);
>>         X.document.open();
>>         X.document.write(html);
>>         X.document.close();
>>         X.top = document.height;
>>         document.height += X.document.height;
>>         X.visibility = 'show';
>>     }
>> }
>>
>>
>> InBasic.
>>
>>
>>
>> On Jan 11, 2008 8:31 PM, joe ertaba <[EMAIL PROTECTED] 
>> <mailto:[EMAIL PROTECTED]>> wrote:
>>
>>     Thank Eric,
>>     is it possible to add some other codes like php or html code to a
>>     page too ?
>>
>>
>>     On Jan 10, 2008 4:49 PM, Eric H. Jung < [EMAIL PROTECTED]
>>     <mailto:[EMAIL PROTECTED]>> wrote:
>>
>>
>>         --- joe ertaba < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>
>>         wrote:
>>
>>          > hi,
>>          >
>>          > i need to add some javascript function to some especial pages;
>>          > i want to for example show a alert('...') when user click on
>>         especial link
>>          > on page
>>
>>         I assume you mean from an extension and not on your project page :)
>>         If so, then wait for the page to load, get the document content,
>>         and:
>>
>>         var s = document.createElement("script");
>>         s.setAttribute("type", "text/javascript");
>>         s.appendChild(document.createTextNode("alert('hello world');"));
>>         document.getElementsByTagName["head"][0].appendChild(s); //
>>         won't work if document has no HEAD
>>
>>
>>         _______________________________________________
>>         Project_owners mailing list
>>         [email protected] <mailto:[email protected]>
>>         https://www.mozdev.org/mailman/listinfo/project_owners
>>
>>
>>
>>     _______________________________________________
>>     Project_owners mailing list
>>     [email protected] <mailto:[email protected]>
>>     https://www.mozdev.org/mailman/listinfo/project_owners
>>
>>
>>
>> ------------------------------------------------------------------------
>>
>> _______________________________________________
>> Project_owners mailing list
>> [email protected]
>> https://www.mozdev.org/mailman/listinfo/project_owners
>>     
>
> _______________________________________________
> Project_owners mailing list
> [email protected]
> https://www.mozdev.org/mailman/listinfo/project_owners
>
>
>   


_______________________________________________
Project_owners mailing list
[email protected]
https://www.mozdev.org/mailman/listinfo/project_owners

Reply via email to