[PHP] Re: Creating XML files

2008-07-06 Thread Fabrice VIGNALS
Not so hard to find : http://php.net/manual/en/book.xml.php "It flance" <[EMAIL PROTECTED]> a écrit dans le message de news:[EMAIL PROTECTED] Hi all, Some months ago i worked with XML. And i remember that i was able to create xml files quite easily. Now i don`t have the book i used by the

[PHP] Re: No Database Connection possible (mySQL)

2008-07-06 Thread Fabrice VIGNALS
First problem : there are not return in the function as it said Second problem : php make a real connection with a unique id to a server database $server1 = array("localhost","user","pass") $server2 = array("localhost2","user2","pass2") Function mysqlConnectServer($server) { $uid = mysql_conne

[PHP] Re: class_is_loadable?

2008-07-06 Thread Fabrice VIGNALS
Hi, The problem is not the autoload but the implementation of such function. class_is_loadable mean, "hey php look at my class somewhere in my files". PHP should inspect some files, in some directories and list classes. Which files, which extensions files, in which directories ? ... In my mind

Re: [PHP] URL Rewrite

2008-07-06 Thread Fabrice VIGNALS
Look at http://framework.zend.com/manual/en/zend.controller.router.html Apache configuration et framework methods to rout your files are there. "Subhranil" <[EMAIL PROTECTED]> a écrit dans le message de news:[EMAIL PROTECTED] Hi All, I want to show one URL at browser and content of different

[PHP] Re: Session variables disappear (some of them only)

2008-07-06 Thread Fabrice VIGNALS
Difficult to help you because there are many method of session : - where do you store the sessions_variables : in local file, db or cookie ? - how you transmit the session id, beetween pages(runtimes) : cookie, $GET link, database ? Did you check the availability of user cookie if you use it