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 to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 1825 - 1855 of 4136   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1825
Hi! Is there a version of WireFrame Editor newer than 3.99 PHPbeta 3? Where can I download it? Thank you very much for the help. Paul...
paulmateescu2002 <pau...
paulmateescu...
Offline Send Email
Mar 1, 2003
8:22 am
1827
] however i need to connect to multiple datasources, so ] i used PEAR.. however i'm having a problem returning a ] range of records in MS SQL Server. ] ]...
alanr1138
Online Now Send Email
Mar 8, 2003
1:23 am
1828
Hi- I'm trying my first php-fusebox and have a hierarchical menu inserted in the following manner: <script type='text/javascript'...
Kurt Leininger
k9srule
Offline Send Email
Apr 8, 2003
2:35 pm
1829
... Hey Kurt, Javascript is client-side, PHP is server-side. You need to put javascript inside the dsp_main.php - in the display area, not inside the fusebox...
Hoffman, Geoffrey
m2guru
Offline Send Email
Apr 8, 2003
2:43 pm
1830
Not knowing the specifics of your project and assuming your javascripts are required site-wide, I'd place the javascript includes in the layout file. Open ...
Mike Britton
mbritton72
Offline Send Email
Apr 8, 2003
2:50 pm
1831
I am wondering, how I can use htaccess while running fusebox. Busy with designing an admin tool for several different users. I made 1 menu for all users,...
Rob
irdx2001
Offline Send Email
Apr 11, 2003
1:22 pm
1832
... I don't use the htaccess (not even sure what that is to be honest) but I have done things like this in php many times: if($_SESSION["userlevel"]=="1"){ ...
Hoffman, Geoffrey
m2guru
Offline Send Email
Apr 11, 2003
3:36 pm
1833
Thanks Geoffrey, will have a look at it with a friend. I am not really experienced with PHP unfortunately, but my friend knows much more about it. Regards, Rob...
Rob
irdx2001
Offline Send Email
Apr 13, 2003
9:00 am
1834
Htaccess is controlled by the webserver. It really has nothing to do with php. Theoretically, if were using htaccess files, you would have them inside a...
Giz
gizmola
Offline Send Email
Apr 14, 2003
4:54 am
1835
Rolling your own security system, or at least using one someone else built, is really the best way to have the most control over the situation. However, there...
David Huyck
davidhuyck
Offline Send Email
Apr 14, 2003
3:39 pm
1836
hello, I'm new to php fusebox and I'm making a news-system (using mysql). It's all going smooth, until I wanted to split the layout and the code. Because I'm...
O'Reason
oreason
Offline Send Email
May 1, 2003
9:40 pm
1837
... This is a HUGE topic. I would advise you to have a look at smarty, http://smarty.php.net/ since it offers probably the best and most widely used ways of...
Hoffman, Geoffrey
m2guru
Offline Send Email
May 1, 2003
10:33 pm
1838
With all due respect to Geoff's opinion, I think that Smarty is not needed, and is only redundantly doing what PHP already IS. You can never get totally away...
Keith Young
tca_ky
Offline Send Email
May 2, 2003
12:51 pm
1839
Thanks, for your suggestions! I think that fusebox already is "some sort of" template-system. Has anybody an example of using while-loops with qry_'s, dsp_'s...
O'Reason
oreason
Offline Send Email
May 2, 2003
2:07 pm
1840
... It is needed if you want to separate logic from presentation. O'Reason said he wants to split the layout and the code. Smarty does this, Fusebox doesn't. I...
Hoffman, Geoffrey
m2guru
Offline Send Email
May 2, 2003
4:01 pm
1841
I don't think we need to get drowned in a debate about the merits of Smarty vs. Fusebox (and I think they can coexist, though I don't use Smarty). But I'll...
David Huyck
davidhuyck
Offline Send Email
May 2, 2003
4:29 pm
1842
For most of my layouts I have a big table with two colums. The left column is the menu and the right column is the "stuff". The layout file has the body,...
Derek Scruggs
derekscruggs
Offline Send Email
May 2, 2003
4:30 pm
1843
Hi Geoff, ... By using a Smarty template to render a dataset (for example 5 rows of data in a table), you *need* to use the Smarty looping construct - which is...
Keith Young
tca_ky
Offline Send Email
May 2, 2003
4:31 pm
1844
I agree with Keith.I'm coming from Cold Fusion Fusebox, and I always did what Keith said. Damian Check out the new Fusebox Forums at: ...
juan perez
dmoca2003
Offline Send Email
May 2, 2003
4:43 pm
1845
... Speaking of which, isn't there now a Fusebox 4.0 for CF? I haven't looked at it closely, but I got the impression from Hal Helms' newsletter that it was ...
Derek Scruggs
derekscruggs
Offline Send Email
May 2, 2003
4:54 pm
1846
There are two versions coming: FB4 AND FBMX for ColdFusion. I think the Beta release is scheduled for May 7. There should be a PHP version for the FB4 by...
David Huyck
davidhuyck
Offline Send Email
May 2, 2003
5:26 pm
1847
Yo da man! I'm looking forward to it. Now stop reading this email and get back to coding. :) -Derek ... From: David Huyck [mailto:b@...] Sent:...
Derek Scruggs
derekscruggs
Offline Send Email
May 2, 2003
7:00 pm
1848
Hi, I'm "making" a member-system using php, mysql and fusebox but I can't get to seperate the phpcode (act_) en queries (qry_). I use the following script: ...
oreason
Offline Send Email
May 6, 2003
11:42 pm
1849
... Hey O- I'm a little confused by your post - not sure what you're asking. Here's what I do: I have a dsp_login.php that puts up a form. The action of the...
Hoffman, Geoffrey
m2guru
Offline Send Email
May 7, 2003
12:50 am
1850
] I'm "making" a member-system using php, mysql and fusebox but I ] can't get to seperate the phpcode (act_) en queries (qry_). ] ] I now make qry_'s with...
Alan Richmond
alanr1138
Online Now Send Email
May 7, 2003
12:56 am
1851
In fusebox, when you write your dsp_ pages, you are somewhat splitting the logic and presentation. Yes, it is not entirely the separation of html and php. 100%...
moramata
Offline Send Email
May 7, 2003
9:14 pm
1852
Hello, I am planning on using PEAR along side Fusebox (primarily for the DB and Auth packages). I've been working with FB for a little while, but I'm pretty...
John Cole
johnmcole
Offline Send Email
May 8, 2003
3:04 am
1853
Pear is simply a library of classes. If you are familiar with Java Foundation Classes or the Microsoft Foundation Classes you could basically think of the...
Jeff Bailey
jeffabailey
Offline Send Email
May 8, 2003
8:54 am
1854
I took a look at the Pear DB stuff a while back and it seemed very daunting, so I wrote my own DB abstraction class. Maybe I should have a look again. I would...
Hoffman, Geoffrey
m2guru
Offline Send Email
May 8, 2003
1:11 pm
1855
<unlurk> I'd recommend that anyone interested in database abstraction look at ADOdb (http://php.weblogs.com/ADODB). I've looked at PEAR before and it's not...
ge0
ge0dotorg
Offline Send Email
May 8, 2003
1:21 pm
Messages 1825 - 1855 of 4136   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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