Search Results

0
votes

Getting PEAR to work on XAMPP (Apache/MySQL stack on Windows)

I suspect the include path should show .;C:\xampplite\php\pear - you show it without the drive letter included. What does the include_path setting in your php.ini file look like? …
2
votes

What is the best way to access a database from PHP?

I'd choose the MDB2 database abstraction layer from PEAR - it provides a nice, abstracted method to deal with the database. I recommend …
2
votes

strpos function problem in PHP not finding the needle

I think VolkerK already has the answer - stripos() does not return a boolean, it returns the position within the string, or false if it's not found - so you want to be checking that the return is n …
6
votes

What is the best PHP programming book?

I've always liked O'Reilly's titles, so I'd recommend their Programming PHP book. It's authored by Rasmus Lerdof, PHP's creat …