Search the web
Sign In
New User? Sign Up
PHP-fusebox · Fusebox methodologies in PHP
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2098 - 2129 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2098
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...
dunguye2
Offline Send Email
Aug 1, 2003
2:11 pm
2099
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...
EV
eventi
Offline Send Email
Aug 1, 2003
2:28 pm
2100
... 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...
Derek Scruggs
derekscruggs
Offline Send Email
Aug 1, 2003
3:16 pm
2101
(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 ...
David Huyck
davidhuyck
Offline Send Email
Aug 1, 2003
3:24 pm
2102
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...
EV
eventi
Offline Send Email
Aug 1, 2003
3:41 pm
2103
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...
Keith Young
tca_ky
Offline Send Email
Aug 1, 2003
3:43 pm
2104
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. ...
dunguye2
Offline Send Email
Aug 1, 2003
3:43 pm
2105
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...
David Huyck
davidhuyck
Offline Send Email
Aug 1, 2003
4:03 pm
2106
... 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...
Derek Scruggs
derekscruggs
Offline Send Email
Aug 1, 2003
4:23 pm
2108
... Not sure I follow you. Could you give an example? -Derek...
Derek Scruggs
derekscruggs
Offline Send Email
Aug 1, 2003
7:55 pm
2110
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...
David Huyck
davidhuyck
Offline Send Email
Aug 4, 2003
2:54 pm
2111
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...
Infutura
infutura2000
Offline Send Email
Aug 5, 2003
5:37 pm
2112
... 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 ...
Derek Scruggs
derekscruggs
Offline Send Email
Aug 5, 2003
11:00 pm
2113
] Sounds like you need to use Module. But if show_row is to ] ] While(condition) { ] Module($Fusebox['rootPath'] . $GLOBALS['self'], ]...
Alan Richmond
alanr1138
Offline Send Email
Aug 6, 2003
12:42 am
2114
... 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...
Robert
emptyvoid
Offline Send Email
Aug 6, 2003
1:37 am
2115
... Sure thing Tim, I have created many large applications using PHP fusebox 3. Such as a mass-marketing customer relationship and lead generation management ...
Robert
emptyvoid
Offline Send Email
Aug 6, 2003
1:51 am
2116
... 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...
Robert
emptyvoid
Offline Send Email
Aug 6, 2003
1:53 am
2117
... I totally agree and would not do this either. ... I've never seen this technique. Does it still capture the relevant fbx_Settings? -Derek...
Derek Scruggs
derekscruggs
Offline Send Email
Aug 6, 2003
2:57 am
2118
] Module($Fusebox['rootPath'].$Fusebox['circuits']['display']. ] 'dsp_show_ ] > row.php', array( ] > 'recordset'=>$recordSetVar ] > )); ] > } // end...
Alan Richmond
alanr1138
Offline Send Email
Aug 6, 2003
3:47 am
2119
... 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 ...
jitao1975
Offline Send Email
Aug 6, 2003
7:55 am
2120
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 ...
infutura2000@...
infutura2000
Offline Send Email
Aug 6, 2003
11:50 am
2121
... 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,...
Keith Young
tca_ky
Offline Send Email
Aug 6, 2003
12:48 pm
2122
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...
Jonathan Roberts
haptik
Offline Send Email
Aug 6, 2003
1:42 pm
2123
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'])...
Derek Scruggs
derekscruggs
Offline Send Email
Aug 6, 2003
2:12 pm
2124
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...
Robert
emptyvoid
Offline Send Email
Aug 8, 2003
12:47 am
2125
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 ...
Robert
emptyvoid
Offline Send Email
Aug 8, 2003
12:54 am
2126
I'm considering jumping into XSLT for layouts. Anybody else doing that? Any pros & cons to share? -Derek...
Derek Scruggs
derekscruggs
Offline Send Email
Aug 8, 2003
8:57 pm
2127
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...
Michael Omar Gatto
gatto_omar
Offline Send Email
Aug 8, 2003
9:17 pm
2128
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...
dunguye2
Offline Send Email
Aug 9, 2003
7:53 pm
2129
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...
smgalleg
Online Now Send Email
Sep 7, 2003
6:31 pm
Messages 2098 - 2129 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help