rabab.orthalis wrote:i paste the gds32.dll in my c:\windows\system32 folder.
PHP-related .dll files (or any others, for that matter, other than .php scripts) should never be moved outside of the main PHP installation folder. Delete these extraneous copies.
rabab.orthalis wrote:and i paste this line in my php.ini
You shouldn't have needed to paste anything; there should already be a "Dynamic Extensions" section in your php.ini file with many extension= lines (unless you didn't begin with a default .ini file provided with PHP).
Next, you should verify that PHP is correctly parsing the .ini file. Make some change (such as changing display_errors to On) in your php.ini file, restart Apache, and do a phpinfo(); if PHP doesn't show the directive's newly changed value, then PHP isn't reading your .ini file and that's the first problem you should tackle.
Also, have you verified that the main PHP directory was added to your system's PATH environment variable? Easy way to check this is to open a command prompt (Start -> Run -> cmd) and type 'path' (without the quotes) - "c:\php" should be somewhere in that list of directories.