Re: [PHP-DB] PHP vs. ASP

2005-11-15 Thread Marc Ferguson
Hi Fellas, Personally I LOVE PHP. It has so much more predefined functions and the web site documentation is awesome. Finding support from MSDN Library is very frustrating and time consuming. I learned how to use PHP from one database-project and their online documentation. With ASP I had t

[PHP-DB] retreiving encrypted password

2005-11-15 Thread W Roothman
Dear all, When adding a new record to my db using '...password('password')...', it ads a ' * ' with the encrypted number when I work on Apache / MySQL, but not on IS. When trying to validate if the user has been registered, it does not validate and request the user to register even though alrea

[PHP-DB] Bug #33877 When multiple result sets are not freed subsequent queries fail

2005-11-15 Thread Harold Chung
I have been trying to follow the possible workaround that the bug report has suggested, to use mssql_free_result at the end of PHP pages to free up resources. However, it does not seem to solve the problem. http://bugs.php.net/bug.php?id=33877 Has anyone encountered this problem? Any help would

[PHP-DB] Re: Table Output Question

2005-11-15 Thread Jeff Grossman
Bastien Koert <[EMAIL PROTECTED]> wrote: > Simply put, you create a couple of css classes that make the row look the > way you want and then > > while ($rows = mysql_fetch_array($result)) > { > $color = ($counter % 2 ==0) ? "rowclass1" : "rowclass2" ; > > echo "..."; > > } > > Its essentially

[PHP-DB] strange value of variable after a php form

2005-11-15 Thread Jean-Philippe BATTU
Hello I wrote a sample html code with a form like this : Choix : val1 val2 val3 val4 and I wrote 011verif.php like this: value $name "); ?> on php4.2.2 the output returned is : value val2name=val2 and on php4.3.10 the output returned is more correct : value val2 what is the differenc