[PHP] Re: Problem with class and tree-like struct

2004-08-07 Thread Martin Schneider
Ah, i forgott to pass the paramter as a reference... Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem with class and tree-like struct

2004-08-07 Thread Martin Schneider
Hello! I made a class which should represent a tree-like structure (PHP 4.3.8). I made a root-nore and added 2 childs. The problem is that the childs are not added to the parent. Why? Martin class TreeItem { var $m_pParent; var $m_sName; var $m_arrChilds = array();

[PHP] How to handle cookies?

2004-07-09 Thread Martin Schneider
Hello! I want to use php to gather some informations on a website. You have to login to this website. In a brwoser, a cookie is set at login and identifies you. How can I handle this cookie when using php? Is there an easy way? It would be best just to use fopen("http://...";). Martin -- PHP G

[PHP] Re: Testing if cookies are enabled

2004-06-21 Thread Martin Schneider
lly done some reading, feel free to ask for some more help. "Martin Schneider" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hello! I saw this on some pages and want to do the same: - On one page the user can login. Before that no cookie is set! - On the next page th

[PHP] Check if cookies are enabled on one page

2004-06-21 Thread Martin Schneider
Hello! I don't want to alyways set a cookie when a user enters my page. I want to set it when the users logs on, not earlier. The way is: - "Login-Page": The user enters the page where he can enter his name/password in a form and then submits this form. Before this, no cookie should be set. -

[PHP] Testing if cookies are enabled

2004-06-21 Thread Martin Schneider
Hello! I saw this on some pages and want to do the same: - On one page the user can login. Before that no cookie is set! - On the next page they set the cookie and show either the user data or a warning that the user has disabled cookies and should enable them. I wasn't able to set and text a coo

[PHP] Testing for cookie?

2004-06-21 Thread Martin Schneider
Hello! Okay, I saw pages doing this and I want exactly the same: - On a page the user can login. Before, no cookie is set. - On the next page, the cookie is set. It shows either the user data (is the login was correct and cookies where enabled) or a page which tells that cookies are disabled. So