I have a page that submits to itself to do self validation and spits out errors on the page if there any. Otherwise it will redirect to another page so I can...
You've gotta pass all those attributes back into the Location... Location("index.php?fuseaction=entry.manipDB&mode=$mode"); Etc... Sort of a pain, though. I...
... Yeah, this is a pain. I wrote some functions to do this automagically - location_on_success(),location_on_failure(), location_on_cancel() etc. It would be...
(Long explanation, but I think it is important to learn these kinds of "best practices") It looks to me like you need to reevaluate your workflow. Fusebox is ...
I'm a little surprised at this, if only because I try to encapsulate FuseActions better (or at least differently :) If I have an action called 'showForm' which...
I am very often having to code form interations that to the user need to appear to have multiple navigation methods (next, previous, add row, etc). The way I...
Whoa this place is awesome. I can't beleve the quick responses. I'm taking David Huyck suggestion and reevaluating my workflow to follow Fusebox design. ...
Clearly, from Keith and EV's responses, there are many ways to break things down, but the general idea is to keep your fuses small and specific. Then you use...
... the ... include ... My less-than-ideal approach for errors is to to use a global array $GLOBALS['error']. When there is an error in a given fuseaction, I...
Hello-- I am going to reply to this on the list, so everyone can find it later... To reuse a form, there are a few ways people do this. Briefly, I usually use...
Hello! I have the following problem: I have a fuse which will call a dsp_page. Let us call it /sub/dsp_table.php In this dsp_table.php file I want to display...
... Sounds like you need to use Module. But if show_row is to work on the same recordset as show_table, you'll need to either pass that recordset to the ...
... Call me crazy but why wouldn't you: A) Create a global function or circuit localized function registered in your fbx_settings.php file and call the...
... Sure thing Tim, I have created many large applications using PHP fusebox 3. Such as a mass-marketing customer relationship and lead generation management ...
... writing ... supports ... Hello, For my large projects we using ADO DB and opened only one connection to the database and then routed all requests through...
... Hello,That is great work. It help me alot. But some problems in your attached samples. I'm really interested in the RFA part of your guide, and tried the ...
The thing with the Module() call works. It's a bit slow but this is really ok for this app. But now I have another question. I have now a problem with the ...
... Would you be willing to share a little on your implementation of this? Perhaps the table structure? In my latest pass at revamping our Intranet security,...
i dont have much to say. but.. going 100 percent fusebox is not an efficient way to tackle every objective.. i try to be as 'compatible' to fusebox as...
You need to stop the layout using some kind of variable. I use suppressLayout as an attribute and, in the fbx_Layouts files: if($attributes['suppressLayout'])...
Hey Keith, Sure thing, Man! I would be hyped to get to use an object based data structure. The design is primary developed in a relational database. I am...
I'm sorry to hear that, When I get the time I will check the samples. I have a stinking suspession that my globalvar and fareturn functions weren't included ...
Its good if you for sure have or will soon have multiple formats to support (WML, PDF even...). Other than that, it just adds a layer before the HTML. In a...
Just like an installation I would like to let the user choose where they want their files to be written to. In my case I'm dynamically creating a file and the...
I have a small web site running php on fusebox. The site requires a default fuseaction be executed everytime somewone logs on to www.mydomain.com. I know how...