[PHP] Java And PHP

2007-10-27 Thread Gevorg Harutyunyan
Hi, I want to use Java in my PHP scripts. I installed PHP 5.2 on windows. From extensions I choosed Java plugin. But Java is not working with PHP 5.2. I have Java installed in C:\Porgram Files\Java\ . I tried to give right jvm.dll path correct C:\Porgram Files\Java\JDK\JRE\bin\server\jvm.dll

Re: [PHP] java .vs php

2005-11-10 Thread Skippy
Quoting [EMAIL PROTECTED]: I know Yahoo! uses PHP and I've heard Google does as well? Google uses Python. http://www.python.org/Quotes.html -- Romanian Web Developers - http://ROWD.ORG -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] java .vs php

2005-11-10 Thread Gustavo Narea
Google uses PHP too. For example: http://toolbar.google.com/failed.php http://toolbar.google.com/whatsnew.php3 http://www.google.co.ve/search?q=%22google+uses+php%22 Regards. Skippy wrote: Quoting [EMAIL PROTECTED]: I know Yahoo! uses PHP and I've heard Google does as well? Google

RE: [PHP] java .vs php

2005-11-10 Thread Nathan Tobik
: Re: [PHP] java .vs php Google uses PHP too. For example: http://toolbar.google.com/failed.php http://toolbar.google.com/whatsnew.php3 http://www.google.co.ve/search?q=%22google+uses+php%22 Regards. Skippy wrote: Quoting [EMAIL PROTECTED]: I know Yahoo! uses PHP and I've heard Google does

RE: [PHP] java .vs php

2005-11-10 Thread Richard Lynch
On Thu, November 10, 2005 9:45 am, Nathan Tobik wrote: Google uses Java also: http://java.sun.com/developer/technicalArticles/J2SE/google/limoore.html Google uses Pigeons as well. :-) After doing enough web development for enough time, you get to where you really don't care what so-and-so is

[PHP] java .vs php

2005-11-09 Thread bruce
hi... php appears to be fine/good for prototyping. my question; does anybody have testing experience regarding scalability of php .vs java. ie, can php scale to handle 1000s of simultaneous connections/users, as well as deal with the various security issues... articles dealing with actual live

Re: [PHP] java .vs php

2005-11-09 Thread Richard Heyes
bruce wrote: hi... php appears to be fine/good for prototyping. my question; does anybody have testing experience regarding scalability of php .vs java. ie, can php scale to handle 1000s of simultaneous connections/users, as well as deal with the various security issues... articles dealing

Re: [PHP] java .vs php

2005-11-09 Thread Chris Shiflett
bruce wrote: i'm trying to really get a feel as to whether php can really drive serious commercial sites. Yahoo gets 3.4 billion page views per day. That serious enough for you? Chris -- Chris Shiflett Brain Bulb, The PHP Consultancy http://brainbulb.com/ -- PHP General Mailing List

Re: [PHP] java .vs php

2005-11-09 Thread Armando Afá
Hi bruce, Programming can be as good as the programer can be. If you look at the google site, how it works, how many concurrent processes that code can do, you realize that tools available for this purposes (Phyton, Perl, PHP java) do what you want them to do. Just try to take a look

Re: [PHP] java .vs php

2005-11-09 Thread Rosty Kerei
Yahoo gets 3.4 billion page views per day. That serious enough for you? I can't believe that Yahoo! works on PHP. Any proofs? As I know they use their own-written engine, if I'm correct it's called yScript. Am I right? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] java .vs php

2005-11-09 Thread Ben Ramsey
On 11/9/05 11:58 AM, Rosty Kerei wrote: Yahoo gets 3.4 billion page views per day. That serious enough for you? I can't believe that Yahoo! works on PHP. Any proofs? As I know they use their own-written engine, if I'm correct it's called yScript. Am I right? Try here for your proof:

RE: [PHP] java .vs php

2005-11-09 Thread Jay Blanchard
[snip] Yahoo gets 3.4 billion page views per day. That serious enough for you? I can't believe that Yahoo! works on PHP. Any proofs? As I know they use their own-written engine, if I'm correct it's called yScript. Am I right? [/snip] You 'were' right...up until 2002

Re: [PHP] java .vs php

2005-11-09 Thread Richard Lynch
On Wed, November 9, 2005 9:40 am, bruce wrote: php appears to be fine/good for prototyping. my question; does anybody have testing experience regarding scalability of php .vs java. ie, can php scale to handle 1000s of simultaneous connections/users, as well as deal with the various security

Re: [PHP] java .vs php

2005-11-09 Thread Esteamedpw
Look at the Thousand and Thousands of vBulletin boards, PHPBB's and other PHP/MySQL based BB Systems out there with several thousand Members on at once, not including guests. I know Yahoo! uses PHP and I've heard Google does as well?

Re: [PHP] Java - toString() - php - ?

2005-08-07 Thread Rory Browne
mean by live evolution in your php/java context. If in php context you have class, say, A: class A { var $t1; var $t2; var $t3; //After, you have object contructor of type A //we have something like this function A ($var1, $var2, $var3) { $this - t1 = $var1

Re: [PHP] Java - toString() - php - ?

2005-08-07 Thread Jasper Bryant-Greene
I think they may do what you want without using the toString method, which for what you're describing is basicly an ugly hack. One more thing: Enlighten me: What exactly do you mean by live evolution in your php/java context. If in php context you have class, say, A: class A { var $t1; var

Re: [PHP] Java - toString() - php - ?

2005-08-02 Thread Jochem Maas
Adi Zebic wrote: To print state of object in Java I can define toString() function and then I can do something like this: Java exemple: * import java.io.*; import java.util.*; public class ReadTextFromFile { private static String line; private

Re: [PHP] Java - toString() - php - ?

2005-08-02 Thread Rory Browne
you're describing is basicly an ugly hack. One more thing: Enlighten me: What exactly do you mean by live evolution in your php/java context. On 8/2/05, Adi Zebic [EMAIL PROTECTED] wrote: To print state of object in Java I can define toString() function and then I can do something like

Re: [PHP] Java - toString() - php - ?

2005-08-02 Thread Adi Zebic
method, which for what you're describing is basicly an ugly hack. One more thing: Enlighten me: What exactly do you mean by live evolution in your php/java context. If in php context you have class, say, A: class A { var $t1; var $t2; var $t3; //After, you have object contructor of type

[PHP] Java - toString() - php - ?

2005-08-01 Thread Adi Zebic
To print state of object in Java I can define toString() function and then I can do something like this: Java exemple: * import java.io.*; import java.util.*; public class ReadTextFromFile { private static String line; private static String

Re: [PHP] Java and PHP

2003-11-22 Thread Raditha Dissanayake
hi The same way that you invoke any other system binary with backticks, exec etc like this: `java javasystem -scenario`; NOTE: using java objects directly in PHP is a different kettle of fish altogether, there are some interesting articles on that topic on many web sites including phpbuilder

[PHP] Java and PHP

2003-11-21 Thread Fredrik
Hi I want to start a java system from a php script, anybody who know how i can do that. Something like this: if(isset($trigger)){ java javasystem -scenario; } Is this possible and how can i do it. -Fred -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Java in PHP

2002-12-13 Thread Liquid Chaos
Hi there. Question. How do you access a custom java class in php that has its own define packages? meaning when I access a java class in php the java class calls other classes to do the job. But when I call the class I get an error: java.lang.NoClassDefFoundError: CaseManager (wrong name: com

[PHP] Java and php domainname validation

2002-08-16 Thread Manu Verhaegen
Hi, I have write a domain control function in php, the php function will working fine. I have create a simpel form with 2 textboxes and 1 button, i will put in this fields a domainname and the extention like yahoo com if i click on the button, then we want to validate the domainname and

Re: [PHP] Java variables - PHP varialbles

2001-02-03 Thread Richard Lynch
Can someone tell me how we can assign the content of a PHP variable to a Java variables in a script (and vice versa). PHP - JavaScript is easy: ?php echo "\nSCRIPT LANGUAGE=JavaScript\n"; echo "document.foo = $foo;\n"; echo "\n/SCRIPT\n"; ?

[PHP] Java variables - PHP varialbles

2001-02-01 Thread Claude Cormier
Hi!, I am rather a newbie with PHP. Can someone tell me how we can assign the content of a PHP variable to a Java variables in a script (and vice versa). Thanks Claude -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e