[PHP] AW: [PHP-WIN] best user authentication method?

2001-01-18 Thread Michael Rudel
Hi Romulo, If you're only working (and all your clients, too) with M$, means M$-Win, M$-IIS, M$-IE, so the best method is NTLM, but all Users must be registered in your PDC as Users. Its very usable in Intranets. Greetinx, Mike (Germany) -Ursprngliche Nachricht- Von: Romulo Roberto

Re: [PHP] Problem with PHP using Java Classes

2001-01-18 Thread Fraser MacKenzie
Thanks. I will try this. Fraser On Thu, 18 Jan 2001, Alex Akilov wrote: Fraser, extension_dir=/usr/local/lib/php/extensions/no-debug-non-zts-20001214:/home/local/java/jdk1.2.2/jre/lib/i386 Change the above to only list the directory that contains the libphp_java.so. The jdk

Re: [PHP] date(t)

2001-01-18 Thread Maurice Rickard
It does indeed work. Thanks, Toby! -Maurice At 10:47 PM -0500 1/18/01, Toby Butzon wrote: You might try this: Arguments for mktime for my reference and for yours are ... int mktime (int hour, int minute, int second, int month, int day, int year [, int is_dst]) Then put it together with

Re: [PHP] MySQL + PWS Problems

2001-01-18 Thread Chris
i downloaded the binaries but when I compiled it said I was missing string.obj - Original Message - From: "Phil Driscoll" [EMAIL PROTECTED] To: "Chris" [EMAIL PROTECTED]; "PHP" [EMAIL PROTECTED] Sent: Wednesday, January 17, 2001 4:44 AM Subject: Re: [PHP] MySQL + PWS Problems Whenever

Re: [PHP] Web hosting for PHP/MySQl development

2001-01-18 Thread Egan
Any recommendations for a good, savvy host for doing some PHP/MySQL development? Not looking for a free service, obviously, but knowledgeable tech support We try. good mysql/php 4/zend support No Zend yet. decent mail handling APOP for secure POP password. Sendmail. Not sure what else

[PHP] Good Reads

2001-01-18 Thread Sean Brown
Does anyone have any suggestions on a good book for beginners. I currently own "PHP3 Programming Browser-Based Applications" by David Medinets. I have no regrets thus far on purchasing the book but it seems to leave a lot out and his examples are somewhat... skewed. Cheers -- PHP General

Re: [PHP] a text formating cpu question

2001-01-18 Thread php3
Addressed to: Noel Akins [EMAIL PROTECTED] [EMAIL PROTECTED] ** Reply to note from Noel Akins [EMAIL PROTECTED] Thu, 18 Jan 2001 22:05:46 + Hello, Question 1: A long time ago, I started my first big project using php3 and MySQL that would return on a query a listing of info

RE: [PHP] Not quite relevant question about coding and query

2001-01-18 Thread Jason Murray
$query = "insert into user values ('firstname','lastname','address','phone')"; $resultinsert = mysql_query($query); $getID = "select userID from user"; // Will this get me the // Id of the record I just inserted? $resultID = mysql_query($getID); No, it

Re: [PHP] Not quite relevant question about coding and query

2001-01-18 Thread [EMAIL PROTECTED]
thanks for Jason:-) Lucky the ID is sequential. That was command I was looking for. cheers Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself" - Original Message - From: Jason Murray [EMAIL PROTECTED] To: 'Jacky@lilst' [EMAIL PROTECTED];

RE: [PHP] Not quite relevant question about coding and query

2001-01-18 Thread Dave Haggerty
-Original Message- From: Jason Murray [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 18, 2001 9:57 PM To: 'Jacky@lilst'; [EMAIL PROTECTED] Subject: RE: [PHP] Not quite relevant question about coding and query $query = "insert into user values

[PHP] PHP site on CD-ROM

2001-01-18 Thread Philip Apostol
Can I run a PHP/Apache/MySQL services on a CD-ROM. We have PHP scripts that handle queries on a large database. We would like to distribute it on a CD-ROM so they could access the database offline. Is it possible? Or are there any similar solutions for this? Im thinking of a text-file

Re: [PHP] Not quite relevant question about coding and query

2001-01-18 Thread php3
Addressed to: "Jacky@lilst" [EMAIL PROTECTED] "Jason Murray" [EMAIL PROTECTED] [EMAIL PROTECTED] ** Reply to note from "Jacky@lilst" [EMAIL PROTECTED] Fri, 19 Jan 2001 13:15:13 -0600 What happens when more than one person updates the tables at nearly the same time?

Re: [PHP] PHP site on CD-ROM

2001-01-18 Thread Rasmus Lerdorf
You would need to go through a web server for it to work. On Fri, 19 Jan 2001, Philip Apostol wrote: Can I run a PHP/Apache/MySQL services on a CD-ROM. We have PHP scripts that handle queries on a large database. We would like to distribute it on a CD-ROM so they could access the database

Re: [PHP] RE: Ethics question...

2001-01-18 Thread jeremy brand
Apache doesn't have threading (yet). If your business depends upon it, you may want to take a look at Solaris/Zeus if you are really getting heavy load high traffic. We serve millions of hits a day off of a small farm of FreeBSD servers running Apache+php for our dynamic content. Thttpd for

Re: [PHP] RE: Ethics question...

2001-01-18 Thread Rasmus Lerdorf
By the way, there is a PHP module for thttpd. Thank you. I know. I haven't had a chance to spend time testing it. Would anyone recommend it for mission critical environments? I can't really do that since I have never tried it. -Rasmus -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Not quite relevant question about coding and query

2001-01-18 Thread [EMAIL PROTECTED]
So what i should really do is like this: $anotherQuery = "select mysql_insert_id(UserID) from user"; $resultUserID = mysql_query($anotherQuery); is that corerct? Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself" - Original Message - From:

Re: [PHP] RE: Ethics question...

2001-01-18 Thread jeremy brand
I can't really do that since I have never tried it. I plan on testing it under extreme load eventually. If I do before someone else does, I'll post my results. But for the mean time, our set up is working perfectly, so it may be a while. I'm a big thttpd advocate, so I'd (for no better

Re: [PHP] Not quite relevant question about coding and query

2001-01-18 Thread [EMAIL PROTECTED]
Sorry, I think it should be like this: $queryInsert = "insert into user values ('firstname','lastname','email')"; $resultinsert = mysql_query($queryInsert); $UserIdLatest = mysql_insert_id(userId); Is that correct? Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal

[PHP] temporary unsubscribe mailing list

2001-01-18 Thread Wen Ni Leong
I would like to unsubscribe the mailing list for a week which is effective from 20th of Jan 2001 to 28th of Jan 2001. I hope you can automatic reactive me into the mailing list after the 28th of Jan 2001. Thank you. From Wendy Leong [EMAIL PROTECTED] -- PHP General Mailing List

Re: [PHP] Not quite relevant question about coding and query

2001-01-18 Thread php3
Addressed to: "Jacky@lilst" [EMAIL PROTECTED] [EMAIL PROTECTED] ** Reply to note from "Jacky@lilst" [EMAIL PROTECTED] Fri, 19 Jan 2001 14:00:02 -0600 Sorry, I think it should be like this: $queryInsert = "insert into user values ('firstname','lastname','email')";

[PHP] Gear Head -- From Home Pages to Popularity

2001-01-18 Thread php3
Addressed to: [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] In his current column for Network World, Gear Hear (AKA Mark Gibbs) talks about PHP and Zend Technologies. Since you hang out on this mailing list, you may not learn much, but go ahead and take a

[PHP] Gear Head -- From Home Pages to Popularity

2001-01-18 Thread php3
Addressed to: [EMAIL PROTECTED] [EMAIL PROTECTED] The current column for Gear Head, (AKA Mark Gibbs) in Network World magazine is all about PHP and Zend Technonogies. Since you hang around on this mailing list, you may not learn much but rejoice in the thought that his column is

<    1   2   3