In a fuseaction defintion for main.com I <do> layouts.main...is there a way INSIDE layouts.main to reference that main.home is calling it? <fuseaction...
... Thanks, David. I had considered doing that (or parsing the query string). It is only one additional line of code (in each fuseaction that needs to know the...
... Honestly there probably is, but I've moved towards putting as much logic as I can into the circuits so that when I revisit it months later, it will be much...
You can call $myFusebox['originalCircuit'] and $myFusebox['originalFuseaction']. Those 2 variables will let you get at what was in the query string from within...
Good going Phillip, I was just going to say that! $myFusebox['originalCircuit'].$myFusebox['originalFuseaction'] will resolve to the circuit.fuseaction in the...
Steve Nelson has a new project that he passed onto me, because the client is specifying PHP and his team of Fusecoders is strictly CF. Provided this goes...
Alright, just got word that Steve's not set up just yet for secretagents.com to take on PHP. You can email me at my Yahoo acc't, which I should be checking at...
Mike, Please count me in. I've been doing PHP development since about 1998. I've also done quite a bit of CF development to boot. You can see my online...
I'd be interested too. However, when I registered with SecretAgents.com in the very beginning I found out that I couldn't join in because I live in England....
If you're currious you can do a dspFuse that has: <? echo "<pre>"; print_r($application['fusebox']); print_r($myFusebox); // etc. echo "</pre>"; ?> There's...
Well... *all* of the circuit xml information is in there too, so it might be best to try this on an app w/ 1 circuit w/ the following circuit.xml file: ...
Ah, because it encapsulates all of my XML config for this particular app. Very cool. I didn't think of doing that before. Nice tip Phil - thanks. * * * Geoff ...
Hi, I'm trying to increment a variable in my circuit XML file and can't get the syntax correct. I set the initial value of the variable in this fuseaction: ...
That syntax will make the following code in the parsed file: $startThumbs="startThumbs+1"; In other words, echo $startThumbs; will output the string...
Hi Phil, I'm trying to paginate through a ResultSet and have a "next" and a "back" link. I had originally thought (and tried) to put startThumbs in the...
Um, am I missing something? Shouldn't he be using $attributes? I mean, that is one of the main advantages of fusebox: all Get, Post, Request, variables end up...
... $attributes only holds $_GET and $_POST. $_REQUEST holds $_GET, $_POST and $_COOKIES. -Alan -- Alan Richmond Aardwolf Web http://www.aardwolfweb.com...
Still... if it's in a link, $attributes is fine. But my previous example for how to increment it... Actually wait. Why would he increment the incoming...
Back in the Fusebox 3 days, for a form that used the POST method, you could get away with hard-coding "index.php?fuseaction=home.contact2" in the "action"...
Very good! :-) Yes, this is how it's done. Although, I thought you could have a form w/ the XFA as part of the action when method was GET and it would still...
Hmm. Well in anycase, the method you described is perfect. :-) Phil On Fri, 4 Feb 2005 12:40:25 -0700, Hoffman, Geoffrey ... -- Kind Regards, Phillip...
Is there any way to get at the variables that are normally available in $myFusebox while inside fusebix.init.php? I'm finding that that variable is empty when...