Hello
If I download the 5.0 do I need to compile to use the mysqli extention. I am also not sure about what they mean to compile. I am reading up.

I came across this when composing a search. I wanted to know how I can create a link which has a variable. Then using this variable to start a search on document in a db to read more. I feel understand how to write the html code within the code.

Such as
print "<img src=\"lit.php?page='.$page['code'].' ">';

Thanks
Tom

    Originally posted by redzzzon
    If I download the 5.0 do I need to compile to use the mysqli extention.

    if you download the pre-compiled binary PHP distribution then you only need to modify your php.ini file:
    extension_dir = "C:\PHP\ext\" (or wherever you installed it)
    extension=php_mysqli.dll (uncomment or add this line)

      Write a Reply...