[PHP] PHP to EJB (Sybase EP, Jaguar engine)

2001-08-19 Thread Alain Fontaine
Hello, I'm looking for ressources, links, articles, or contacts regarding the above subject, namely interfacing PHP to an EJB, particularly Sybase Enterprise Portal (formerly known as Jaguar). Thanks for any input, I appreciate it. -- PHP General Mailing List (http://www.php.net/) To

[PHP] Exception handling

2001-02-15 Thread Alain Fontaine
Hello, Is it impolite to ask about when approximately PHP will support Exception handling ? :) Thanks ! -- 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:

Re: [PHP] simple config. question

2001-02-05 Thread Alain Fontaine
Christian, Wouldn't this put unnecessary load on the webserver? Every .htm and .html document, even if it doesn't contain any line of PHP code, would go through the parser... ? "Christian Reiniger" [EMAIL PROTECTED] a écrit dans le message news: [EMAIL PROTECTED] On Monday 05 February 2001

[PHP] HTTP compression

2001-02-04 Thread Alain Fontaine
Hi, I've just started experimenting with ob_start("ob_gzhandler") a bit, and I have found that if any output is generated before ob_start() is called, nothing at all gets compressed; if ob_start() is called before any output, everything is compressed. Is this the case, I mean, is this "by

RE: [PHP] HTTP compression

2001-02-04 Thread Alain Fontaine
d'origine- De : Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Envoye : dimanche 4 fevrier 2001 14:34 A : Alain Fontaine Cc : [EMAIL PROTECTED] Objet : Re: [PHP] HTTP compression I've just started experimenting with ob_start("ob_gzhandler") a bit, and I have found that if an

RE: [PHP] HTTP compression

2001-02-04 Thread Alain Fontaine
Teodor, Looked at it from that point of view, the question was pretty stupid ! ;) -Message d'origine- De : Teodor Cimpoesu [mailto:[EMAIL PROTECTED]] Envoye : dimanche 4 fevrier 2001 19:09 A : Alain Fontaine Cc : Sean Cazzell; [EMAIL PROTECTED] Objet : Re: [PHP] HTTP compression

Re: [PHP] db paging with MS Sql

2001-02-04 Thread Alain Fontaine
Scott, As far as I know, MS SQL supports a syntax like this: SELECT TOP 10 FROM table_name WHERE etc etc However, I don't know how to make it start from a certain offset; I guess MS SQL's documentation, especially the T-SQL doc, should help. ""Scott Parks"" [EMAIL PROTECTED] a écrit dans le

Re: [PHP] Future plans (4.1) ?

2001-02-03 Thread Alain Fontaine
Hi, I think this kind of reflection particularly holds true when thinking about OpenSource development, where a potentially unlimited number of developers all work on the same project; developers from all over the world. Now, how would you possibly try to impose a coding standard to several

Re: [PHP] Form's and oracle

2001-02-03 Thread Alain Fontaine
Hi, I think it's one of the "magic_quotes" features that does this. One possibility would be to turn it off, and be sure to escape your quotes by transforming them into double-quotes before sending them to Oracle. "Christoph Kempen" [EMAIL PROTECTED] a écrit dans le message news: [EMAIL

[PHP] try - catch ?

2001-02-03 Thread Alain Fontaine
Hi, Are there any plans on implementing something like Exception handling into future versions of PHP? That would be great. -- 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

Re: [PHP] CGI vs PHP

2001-02-03 Thread Alain Fontaine
Do you know what PHP is? Your question sounds like "How does MS SQL Server compare to a relational database". Anyway, you can do almost everything with PHP, and that includes handling flat files. No problem. ""phpLover"" [EMAIL PROTECTED] a écrit dans le message news: 95hl5r$1su$[EMAIL

Re: [PHP] passing parameters

2001-02-02 Thread Alain Fontaine
Rule #1: Do not post your database credentials into newsgroups. Rule #2: See Rule #1 "Stinie Steinbach" [EMAIL PROTECTED] a écrit dans le message news: [EMAIL PROTECTED] does anyone know what's wrong with this files? i want to pass the parameter $module_id from one file tot the next so that

RE: [PHP] Zend IDE

2001-02-02 Thread Alain Fontaine
an layout, even some with UK layout. * etc. "Java - write once, run anywhere". Shouldn't this rather be: "Java - be sure to use an US keyboard!" ? ;) -Message d'origine- De : Andi Gutmans [mailto:[EMAIL PROTECTED]] Envoye : vendredi 2 fevrier 2001 12:08 A : Alain Fonta

Re: [PHP] Win2000 TCP/IP failure

2001-02-02 Thread Alain Fontaine
Hi, This looks rather like a problem with your TCP/IP stack. Any changes made to the w2k network configuration recently? "Toby Butzon" [EMAIL PROTECTED] a écrit dans le message news: [EMAIL PROTECTED] Greetings, I've run into a problem on my Win2k computer running IIS5 and PHP 404pl1. I've

Re: [PHP] PHP configure commandline

2001-02-02 Thread Alain Fontaine
Hi, How about creating a small phpinfo.php file that calls phpinfo(), and run it from the command line ? ""indrek siitan"" [EMAIL PROTECTED] a écrit dans le message news: [EMAIL PROTECTED] Hi, is there a way to find out what configure command-line was used to compile the PHP module, if the

Re: [PHP] PHP configure commandline

2001-02-02 Thread Alain Fontaine
Hi again, Sorry. I just found out that my answer doesn't make any sense at all. ""Alain Fontaine"" [EMAIL PROTECTED] a écrit dans le message news: 95eb5v$p77$[EMAIL PROTECTED] Hi, How about creating a small phpinfo.php file that calls phpinfo(), and run it from the comma

Re: [PHP] Form data is not remembered

2001-01-27 Thread Alain Fontaine
nd display the form again in case of an error with the saved values restored into the form. This is particularly easy if you have an object that you want to define using your form; you can easily save the whole object as a session variable. ""Alain Fontaine"" [EMAIL PROTECTED

[PHP] Transparent SID and forms (POST) ?

2001-01-27 Thread Alain Fontaine
Hi, When I use a form that POST's information to another php page, do I have to manually include php's session name and the session id in HIDDEN form fields, or is this done automatically ? This applies, of course, when the user has cookies disabled... -- PHP General Mailing List

[PHP] Conditional include based on virtual host ?

2001-01-26 Thread Alain Fontaine
Hello, I have developed a large web application the contents of which (language and data) depends on the URL the site is accessed from, e.g. en.site.com would display the "english" site, and "fr.site.com" would display the french site, and so on. The whole thing is "parameterized" through a set

[PHP] Form data is not remembered

2001-01-24 Thread Alain Fontaine
Hi, I have a page with a couple of form fields that are being POSTed to a processing PHP script. The page that contains these form fields is itself a PHP page that uses sessions and so on. I have to make "server-side data validation" on the fields because of their complexity. When the user hits

Re: [PHP] last_insert_id function

2001-01-24 Thread Alain Fontaine
Hi, Anyway, as far as I know, mysql_insert_id() is just a PHP implementation calling the exact same code as mySQL's internal last_insert_id() function; except for the drawback with the BIGINT thing, the functionality should be exactly the same for both. "Maxim Maletsky" [EMAIL PROTECTED] a

Re: [PHP] last_insert_id function: I did already

2001-01-24 Thread Alain Fontaine
Hi, To use mySQL's internal function, try something like this: mysql_query("insert into mytable values(1,2,3)"); $rs = mysql_query("select LAST_INSERT_ID() from mytable"); $theLastInsertedID = mysql_result($rs,0,0); ""Jacky@lilst"" [EMAIL PROTECTED] a écrit dans le message news:

Re: [PHP] SMs

2001-01-14 Thread Alain Fontaine
Hi, This "special server" is usually called an SMSC - SMS Center, run by your mobile operator. These SMSC's are pretty powerful in the way that you can access them through TCP (VPN for sure, and sometimes even HTTP), or through a direct link connexion. You'd need to talk to your mobile operator

Re: [PHP] Good and working documentation generator

2001-01-11 Thread Alain Fontaine
p://www.turingstudio.com vox+510.666.0074 fax+510.666.0093 Saul Zaentz Film Center 2600 Tenth St Suite 433 Berkeley, CA 94710-2522 From: [EMAIL PROTECTED] ("Alain Fontaine") Newsgroups: php.general Date: 6 Jan 2001 12:17:16 -0800 Subject: [PHP] Good and working documentation generat