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