[PHP] What's up with Quercus?

2011-05-27 Thread Arnold Hesnod
number of people are using it for production applications, I'm curious why 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 unawa

[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

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

2004-10-02 Thread Arnold
tton and define a new php script 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

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

2004-10-02 Thread Arnold
(allready written) output of "a.php". "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 does

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") direc

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

2004-10-02 Thread Arnold
ub\wwwroot\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 PROTE

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 PR

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] How to load another php page?

2004-10-02 Thread Arnold
file. I guess 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

[PHP] PHP and Excel

2004-07-13 Thread Arnold
on web pages (i 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 prod

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

2003-03-17 Thread Arnold Schommer
ny sign of the program. > How can I know what is happening? Where can I look for the error? > > 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-ed

[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 Rati

[PHP] Re: List tables

2003-03-17 Thread Arnold Schommer
n start with something like select table_name, column_name from user_tab_columns hth -- 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

[PHP] Re: Cascading delete in oracle

2003-03-17 Thread Arnold Schommer
stead to clearly see 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

[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.

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 o

[PHP] Regular Expressions...

2002-01-18 Thread Tony Arnold
Howdy people... I want to extract the name of a hyperlink which looks like this: this is the name! 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_. -".

[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] 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 additi

[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... &

[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. } start('10

[PHP] conjob etc.

2001-10-24 Thread Arnold Gamboa
n job 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., Ma

[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 mailin

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

[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]

[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]

[PHP] PostgreSQL vs InterBase

2001-02-27 Thread Arnold Gamboa
I hve heard a great deal about InterBase. Please comment on which is better: 1. Speed 2. Data Reliability 3. Compatibility with PHP Thanks for your comments. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

Re: [PHP] crontab help

2001-02-22 Thread Arnold Gamboa
ly takes about 24 hours to send out 1M messages. > > --Joe > > On Fri, Feb 22, 2002 at 03:36:33PM +0800, Arnold Gamboa wrote: > > thanks for the comment > > > > let's just say i have 100k emails to send... don't you think that will drain > > the syst

Re: [PHP] crontab help

2001-02-21 Thread Arnold Gamboa
is on my mass > mailer and it worked like a charm. > > --Joe > > On Fri, Feb 22, 2002 at 02:53:10PM +0800, Arnold Gamboa wrote: > > hi there. > > > > is there a way to tell crontab to do: > > > > "run script every 5 mins for 1 hour".. > > >

[PHP] crontab help

2001-02-21 Thread Arnold Gamboa
hi there. is there a way to tell crontab to do: "run script every 5 mins for 1 hour".. i have this mass email script that is so huge that i need it to chunk into records and make sure that it will run every 5 mins for 1 hour. Thanks for any help.