Re: [PHP] MD5 password

2001-05-10 Thread Anuradha Ratnaweera
On Fri, 4 May 2001, Thimo von Rauchhaupt wrote: > > Hi there assume that I had a password field in md5 format like this > > $1$uJ8d$jJKOHnfh^79824/. > > how do i compare an input password to the password that I sore in database > > > > so it can return right or wrong password > > Just compare t

RE: [PHP] Need to know this

2001-05-10 Thread Anuradha Ratnaweera
On Fri, 4 May 2001, S.J. Black wrote: > > People Hate Perl ;) > > That's gorgeous! I like that too:) Anuradha -- http://www.bee.lk/people/anuradha/";>home page -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

Re: [PHP] Sorry, what is "PWS"

2001-05-10 Thread Anuradha Ratnaweera
On Wed, 9 May 2001, hassan el forkani wrote: > i have tried both PWS and Apache on a windows98 machine, and franckly > Apache is much much better just grab a binary distribution install it > and go through the httpd.conf to configure it (that's the trikiest > part but the file is very well comme

Re: [PHP] "Free" Database Design Program

2001-05-10 Thread Anuradha Ratnaweera
On Sat, 5 May 2001, Augusto Cesar Castoldi wrote: > Anyone know a "Free" database Design program? I'm needing to organize my > MySQL databases and design new databases. In what sence do you mean "Free"? Just curious;> Anuradha -- http:/

Re: [PHP] Starting PHP script with crontab

2001-05-09 Thread Anuradha Ratnaweera
in there) on your interval > > - Noah > > "Anuradha Ratnaweera" <[EMAIL PROTECTED]> wrote in message > Pine.LNX.4.21.0105021110320.342-10@presario">news:Pine.LNX.4.21.0105021110320.342-10@presario... > > > > If you are not careful, anyone

Re: [PHP] Sorry, what is "PWS"

2001-05-09 Thread Anuradha Ratnaweera
On Sat, 5 May 2001, Thomas Edison Jr. wrote: > Latest version of PWS is 4.0! If u're looking for something esy & fast > to get running, PWS is it. It is not something as easy as apache to install. If you install any Linux or BSD distribution, you get can apache to run out of the box without any

Re: [PHP] Please review our coding standards

2001-05-02 Thread Anuradha Ratnaweera
Most of your guidelines match with our practices. Here are some comments. On Sat, 28 Apr 2001, Steven Haryanto wrote: > 0.1 We are writing PHP4 application here, not PHP3, nor Perl, Python, etc. > So use PHP idioms. Same here. > 0.3 Consistency matters. > > 0.4 Standards is important. >

Re: [PHP] String Type Unknown

2001-05-02 Thread Anuradha Ratnaweera
Since it contains only digits 0-9 and letters a-f, it looks like hexadecimal. Why don't you try to read two characters at a time and either convert them to binary or check their ascii values. There seem to be many ascii values however. Where did you get this from? Anuradha On Mon, 30 Apr 2001,

Re: [PHP] template solutions?

2001-05-02 Thread Anuradha Ratnaweera
WML is an easier solution (search freshmeat for wml - website meta language). Anuradha On Sun, 29 Apr 2001, Steven Haryanto wrote: > Does anyone know a rather advanced template solution in PHP? > At least one that supports loop and if (like HTML::Template), > and directives/commands would be n

Re: [PHP] Starting PHP script with crontab

2001-05-02 Thread Anuradha Ratnaweera
If you are not careful, anyone will be able to run the script! Anuradha On Thu, 19 Apr 2001, Bertjan Schrader wrote: > I need tot start a PHP script at night with the crontab. I tried to do it > with lynx (lynx http://www.domain.nl/test.php) as a commandline within the > crontab. Lynx is start

Re: [PHP] SQL Select Unique() ?

2001-05-02 Thread Anuradha Ratnaweera
On Thu, 19 Apr 2001, James, Yz wrote: > Is there a method of extracting rows from a MySQL table Uniquely (as in only > once) ?. For example, when a user performs a search, using two words, > it may return the same row twice if the search is spread over two or more > SQL "selections". An exa

RE: [PHP] SQL Query time?

2001-05-02 Thread Anuradha Ratnaweera
I wonder if using microtime() gives _actual_ time spent for the query while explain gives _processor_ time. Anuradha On Thu, 26 Apr 2001, Maxim Maletsky wrote: > what about microtime() ? > > you can do it your self: > > $start = microtime(); > mysql_query()... > $stop = microtime(); > > $to

Re: [PHP] database server comparation

2001-04-26 Thread Anuradha Ratnaweera
Slightly off topic... If you need features, postgresql is way ahead. It supports many advanced features that are not available under other systems such sub-selects, triggers, views, foreign key referential integrity, transactions and sophisticated locking (7.1 supports outer joins). It was beli