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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 2857 - 2886 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2857
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...
skyegior
Offline Send Email
Feb 1, 2005
4:21 pm
2858
Sorry, I should say that should be in the circuit fuseaction definition ... <set name="caller" value="mainhome" />...
David Eleuterius
david_eleute...
Offline Send Email
Feb 1, 2005
4:28 pm
2859
... You do this: <set name="caller" value="mainhome" /> Then in your code put a switch or if statement to handle the value for caller....
David Eleuterius
david_eleute...
Offline Send Email
Feb 1, 2005
4:32 pm
2860
... 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...
skyegior
Offline Send Email
Feb 1, 2005
4:41 pm
2861
... 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...
David Eleuterius
david_eleute...
Offline Send Email
Feb 1, 2005
4:47 pm
2862
You can call $myFusebox['originalCircuit'] and $myFusebox['originalFuseaction']. Those 2 variables will let you get at what was in the query string from within...
Phillip Harrington
philsown
Offline Send Email
Feb 1, 2005
4:58 pm
2863
Good going Phillip, I was just going to say that! $myFusebox['originalCircuit'].$myFusebox['originalFuseaction'] will resolve to the circuit.fuseaction in the...
Mike
starkraving2002
Online Now Send Email
Feb 1, 2005
6:35 pm
2864
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...
Mike
starkraving2002
Online Now Send Email
Feb 1, 2005
9:48 pm
2865
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
starkraving2002
Online Now Send Email
Feb 1, 2005
10:35 pm
2866
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...
Ted Stresen-Reuter
tedmasterweb
Offline Send Email
Feb 1, 2005
10:52 pm
2867
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....
Anthony Cooper
anthonyjohnc...
Offline Send Email
Feb 2, 2005
8:24 am
2868
That is some useful information. Are the fusebox globals documented anywhere? On Tue, 01 Feb 2005 18:34:49 -0000, "Mike" <starkraving2002@...>...
Brett Conrad
bdconrad_online
Offline Send Email
Feb 2, 2005
9:32 pm
2869
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...
Phillip Harrington
philsown
Offline Send Email
Feb 2, 2005
9:35 pm
2870
Jeez - I guess! It's 4572 lines of text! It would be more accurate to say, "everything of use is in there" * * * Geoff ... From: Phillip Harrington...
Hoffman, Geoffrey
m2guru
Offline Send Email
Feb 2, 2005
9:41 pm
2871
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: ...
Phillip Harrington
philsown
Offline Send Email
Feb 2, 2005
9:44 pm
2872
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 ...
Hoffman, Geoffrey
m2guru
Offline Send Email
Feb 2, 2005
9:47 pm
2873
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: ...
James Johnson
jamessmb
Offline Send Email
Feb 3, 2005
5:17 am
2874
That syntax will make the following code in the parsed file: $startThumbs="startThumbs+1"; In other words, echo $startThumbs; will output the string...
Phillip Harrington
philsown
Offline Send Email
Feb 3, 2005
5:29 am
2875
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...
James Johnson
jamessmb
Offline Send Email
Feb 3, 2005
6:03 pm
2876
You mean $_REQUEST I believe. Phil ... -- Kind Regards, Phillip Harrington http://philsown.org/...
Phillip Harrington
philsown
Offline Send Email
Feb 3, 2005
6:46 pm
2877
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...
Ted Stresen-Reuter
tedmasterweb
Offline Send Email
Feb 3, 2005
7:31 pm
2878
Duh. Yes. It was late, OK? Phil On Thu, 3 Feb 2005 19:31:31 +0000, Ted Stresen-Reuter ... -- Kind Regards, Phillip Harrington http://philsown.org/...
Phillip Harrington
philsown
Offline Send Email
Feb 3, 2005
7:35 pm
2879
... $attributes only holds $_GET and $_POST. $_REQUEST holds $_GET, $_POST and $_COOKIES. -Alan -- Alan Richmond Aardwolf Web http://www.aardwolfweb.com...
Alan Richmond
alanr1138
Offline Send Email
Feb 3, 2005
7:56 pm
2880
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...
Phillip Harrington
philsown
Offline Send Email
Feb 3, 2005
8:23 pm
2881
Oops... yes $_REQUEST. ... -- James Johnson jamesNew@......
James Johnson
jamessmb
Offline Send Email
Feb 4, 2005
12:13 am
2882
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"...
Hoffman, Geoffrey
m2guru
Offline Send Email
Feb 4, 2005
7:17 pm
2883
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...
Phillip Harrington
philsown
Offline Send Email
Feb 4, 2005
7:38 pm
2884
In my experience, a method of GET requires a hidden input with the fuseaction to use. When I've tried it in the past, the index.php stuck but my ...
Hoffman, Geoffrey
m2guru
Offline Send Email
Feb 4, 2005
7:43 pm
2885
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...
Phillip Harrington
philsown
Offline Send Email
Feb 4, 2005
7:51 pm
2886
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...
Ted Stresen-Reuter
tedmasterweb
Offline Send Email
Feb 7, 2005
6:01 pm
Messages 2857 - 2886 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