[PHP] What's up with Quercus?

2011-05-27 Thread Arnold Hesnod
it's adoption isn't even higher than it is? Given the difficulties of writing a Virtual Machine, it seems like leveraging the JVM is a no brainer. Is there some technical drawback that I'm unaware of or is it just a case of inertia? Thanks. -- Arnold -- PHP General Mailing List (http

[PHP] add item to end of (multidimensional) array

2004-10-15 Thread Arnold
Hi, How can i add new items to an array without using an index. Normally (single dimension) you can do: Arr[]=x and this item is added to the array, but what if i have subitems like: Arr[]['name']=arnold; Arr[]['address']=street. This last example doesnt work and i think

[PHP] How to load another php page?

2004-10-02 Thread Arnold
that there should be a php command like load, but i didnt found it yet. Who can help me? Regards, Arnold -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to load another php page?

2004-10-02 Thread Arnold
Does an include replace the file who called include? Arnold [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] if(isset($var1)) { include 'another.php'; } Hi, How can i load another php file (another.php) directly without an action (example: clicking on a button)? I'd like

Re: [PHP] How to load another php page?

2004-10-02 Thread Arnold
I don't think include replaces the calling php script. What i mean is that i want exactly the same as what is done by an submit action but then you have to press a button, whereafter a new phpfile is loaded and the button-press is what i want to ignore. Arnold [EMAIL PROTECTED] wrote in message

Re: [PHP] How to load another php page?

2004-10-02 Thread Arnold
\xxx.php:5) in D:\Inetpub\wwwroot\xx.php on line 31 So what i want is to go to another php file everywhere in the php script with something like: if(thisistrue) { load y.php; exit; } Arnold Lists [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hmmm, I'm not sure I am following you

Re: [PHP] How to load another php page?

2004-10-02 Thread Arnold
guess it should be done with the header() function but then i have to put the test rigth in the beginning of the script? Arnold Alex Hogan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [snip] How can i load another php file (another.php) directly without an action (example

Re: [PHP] How to load another php page?

2004-10-02 Thread Arnold
. Marek Kilimajer [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Arnold wrote: This (header() function) works only if this is the first output sent to browser so later in the script this doesnt work anymore, i've tried that. After that you get error messages like: Warning: Cannot modify

Re: [PHP] How to load another php page?

2004-10-02 Thread Arnold
to that action. Thanks for your help! Regards, Arnold Graham Cossey [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] For my own clarification, would it not be possible to use output buffering and then either redirect to another script using header() or output the buffer contents? ?php

[PHP] PHP and Excel

2004-07-13 Thread Arnold
guess the spreadsheet Excel Writer package), let Excel do the work and produce the output information, in PHP? Or is there an easier way to use an Excel sheet together with web pages? Arnold -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How stable is CVS releases?

2003-06-06 Thread Timothy Arnold
Hi all, I am having a problem with compiling PHP 4.3.2 on Solaris 8. The compile runs ok but blows up when I try a make install. Before submitting this a bug I downloaded the latest CVS release to see if it has been fixed. It has! Unfortunatly, I do not know how stable the CVS version is for

[PHP] Re: Cascading delete in oracle

2003-03-17 Thread Arnold Schommer
if it's empty. hth Arnold Schommer Raven Eve wrote: create table Shop( ordId NUMBER(7) NOT NULL PRIMARY KEY); create table Customer( ordId NUMBER(7) NOT NULL, FOREIGN KEY (ordId) REFERENCES Shop(ordId) on delete cascade); so, when i delete a row in shop, the corresponding row in customer

[PHP] Re: List tables

2003-03-17 Thread Arnold Schommer
-- Arnold Schommer FS EDV Service Beratung GmbH An der Pönt 48 40885 Ratingen fon: +49 2102 186 400 fax: +49 2102 186 499 mailto:[EMAIL PROTECTED] http://www.fs-edv.de -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: variables with

2003-03-17 Thread Arnold Schommer
__ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- Arnold Schommer FS EDV Service Beratung GmbH An der Pönt 48 40885 Ratingen fon: +49 2102 186 400 fax: +49 2102 186 499 mailto:[EMAIL PROTECTED] http

[PHP] Re: PHP program running from shell ends silently

2003-03-17 Thread Arnold Schommer
? Thanks a lot! -- Arnold Schommer FS EDV Service Beratung GmbH An der Pönt 48 40885 Ratingen fon: +49 2102 186 400 fax: +49 2102 186 499 mailto:[EMAIL PROTECTED] http://www.fs-edv.de -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Get Browsers time zone

2003-03-06 Thread Jonathan Arnold
Is there a way to figure out the client (ie., browser's) time zone? I have a time stored as a GMT time, and I'd like to display it in the viewer's time zone. -- Jonathan Arnold (mailto:[EMAIL PROTECTED]) Amazing Developments http://www.buddydog.org So I'm ugly. So what? I never saw

[PHP] Regular Expressions...

2002-01-18 Thread Tony Arnold
Howdy people... I want to extract the name of a hyperlink which looks like this: a href=this is the name!/a I tried to do this: ereg(([a-zA-Z0-9_. -]*),$hlink, $reg3); and it works if it only consists of the above characters, how can I tell ereg to include all characters? not only a-zA-Z0-9_.

RE: [PHP] Regular Expressions...

2002-01-18 Thread Tony Arnold
Thank you! -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: den 18 januari 2002 15:14 To: Tony Arnold; [EMAIL PROTECTED] Subject: Re: [PHP] Regular Expressions... On Friday 18 January 2002 22:09, Tony Arnold wrote: Howdy people... I want to extract the name

[PHP] Parsing?

2002-01-16 Thread Tony Arnold
I'm wondering if it's possible to parse a .php-file so i looks exactly as if I just were looking at the source trough a browser with all the environment-variables intact and so on? / Tony... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] WDDX...

2002-01-16 Thread Tony Arnold
I'm doing a website which I want to be easily updated so I made it using wddx, now I wonder how fast or slow it is? How many people can connect to my website without seeing any slowdowns? Anyone knows? / Tony... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Looping?

2001-12-14 Thread Tony Arnold
Hello, I don't know if I'm in the right newsgroup but I'll give it a try... :-) How can I make the following work: function start($times) { for...loop starts here... { -- notice only one bracket. } function end() { } -- the ending bracket. }

[PHP] Re: Looping?

2001-12-14 Thread Tony Arnold
Thank you all for very good and quick answers. They did help! :-) / Tony... Tony Arnold [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, I don't know if I'm in the right newsgroup but I'll give it a try... :-) How can I make the follow

[PHP] conjob etc.

2001-10-24 Thread Arnold Gamboa
calling a php script that access mysql and reads data EVERY 5 MINS, will i exhaust my box's resources? That is the best /safest thing i have in mind in as far as doing an email account manipulation on the linux box. Any idea is also appreciated. Thanks.. Mabuhay! -- Arnold Gamboa Pres., Managing Dir

[PHP] PostgreSQL vs. Interbase

2001-05-07 Thread Arnold Gamboa
Hi there. I'm currently in serious research on what database to use for a B2B site which is expected to hold millions of records. I have in so far considered two open source databases - Interbase and PostgreSQL. With this in mind, I'm sending this email to both the PostgreSQL and Interbase

Re: [PHP] mail() implementation problem

2001-03-16 Thread Mathieu Arnold
Manuel Lemos wrote: Hello, Mathieu Arnold wrote: Hi The actual implementation of the mail fonction use sendmail -t and relies on sendmail to parse the headers to get the recipients. It would be great if it was possible to switch from this way of using sendmail to a more

[PHP] mail() implementation problem

2001-03-15 Thread Mathieu Arnold
to do it. -- Mathieu Arnold -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]