Re: [PHP] suggestion: recursive calls

2003-09-05 Thread Ronald van Raaphorst
can get a core dump which can be loaded in GDB to see > the stack. I usually know Its infinite recursion when GDB shows a > backtrack in the 10s of thousands. > > Cheers, > Rob. > > > On Thu, 2003-09-04 at 06:04, Ronald van Raaphorst wrote: > > Hi all, > > &

Re: [PHP] suggestion: recursive calls

2003-09-05 Thread Ronald van Raaphorst
Yep, but then I expect a timeout error because my script is running more than say 20 seconds... Ronald "Marco Schuler" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > Hi > > Am Don, 2003-09-04 um 12.40 schrieb Ronald van Raaphorst: > >

Re: [PHP] suggestion: recursive calls

2003-09-04 Thread Ronald van Raaphorst
how should a stupid computer program > find out. > > Ronald van Raaphorst wrote: > > > Hi all, > > > > Not a real bug, but a suggestion: > > It would be nice if inifite recursive calls would somehow give an error. > > I spend quite some time to find the error in

[PHP] suggestion: recursive calls

2003-09-04 Thread Ronald van Raaphorst
Hi all, Not a real bug, but a suggestion: It would be nice if inifite recursive calls would somehow give an error. I spend quite some time to find the error in my php script. Ronald -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Website templating schemes

2003-09-02 Thread Ronald van Raaphorst
Search google for Smarty (I believe it's www.smarty.php) It's a great way of separating output from the logic using templates. Ronald "Joel Konkle-Parker" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > I'm trying to make a PHP-backed website, and I'm trying to decide between two

[PHP] Re: objects in header / sharing data among frames

2003-09-01 Thread Ronald van Raaphorst
Oeps, sent twice... Sorry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Sharing data among frames ?

2003-09-01 Thread Ronald van Raaphorst
Hi all, I want to share data between two frames. My object should be a php script (if possible). The object should know (using a session variable) which id is currently displayed in each frame. This way, the object can decide if the frame should be refreshed or not, because it knows what ID alread

[PHP] objects in header / sharing data among frames

2003-09-01 Thread Ronald van Raaphorst
Hi all, I want to share data between two frames. My object should be a php script (if possible). The object should know (using a session variable) which id is currently displayed in each frame. This way, the object can decide if the frame should be refreshed or not, because it knows what ID alread

[PHP] Optionally force refresh in another frame

2003-09-01 Thread Ronald van Raaphorst
Hi all, I have 3 frames: Top, Menu (menu.php?menuid=x) and Content ( Content.php?[ table=y | article=z]) Menu.php displays a menu, and the selected item=x Content.php displays either a mysql table or an article. Now I don't want to refresh the menu frame when the topic is the same for another ar

Re: [PHP] Refresh a frame based on a condition in another frame?

2003-09-01 Thread Ronald van Raaphorst
of the frames instead of the whole > frameset look at the 'target' attribute for 'A' element in html. > > > Ronald van Raaphorst wrote: > > >Hi all, > > > >I have header, a menu and a content frame. > >The header should not be refreshed. > &

[PHP] Refresh a frame based on a condition in another frame?

2003-09-01 Thread Ronald van Raaphorst
Hi all, I have header, a menu and a content frame. The header should not be refreshed. The menu dislays a menu (menu.php?menuid=x) from a mysql menu database, and should be refreshed based on a condition. The content frame (content.php?[article=x | table=y]) displays either an article or some dat