[PHP] Re: Urgent:Php5 fully oops supported? Difference between java oops & php5 oops

2005-07-26 Thread rush
omputer language theoreticians ;) . But form me php 5 is one fine oop language, and personaly more fun than java since it is dynamically typed like some root oop languagas like Smalltalk, while java is of statically typed kind of bore. rush -- http://www.templatetamer.com/ http://www.folderscavenger.com/

[PHP] Re: Urgent:Php5 fully oops supported? Difference between java oops & php5 oops

2005-07-26 Thread rush
ince it is dynamically typed like Smalltalk, while java is statically typed. rush -- http://www.templatetamer.com/ http://www.folderscavenger.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: weird thing; downloading from a php script stops at exactly 2.000.000bytes

2005-06-09 Thread rush
e > Firefox on Linux), no matter if php runs on apache2 or apache1.3 try changing the amount of memory that php script can use, and see if download stops at different place. Default memory for script is 8Mb, and 2Mb is suspiciosly equal to 8Mb/word size. rush -- http://www.templatetamer.com/ ht

[PHP] Re: php + cvs

2005-05-31 Thread rush
use TortoiseCVS - apache - php - mysql. Then i connect through ssh to the remote cvs server. rush -- http://www.templatetamer.com/ http://www.folderscavenger.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Building array ?

2005-05-18 Thread rush
t user ID's into an array; >$uidToAdmin .= array ("$row[user_id]"); > >// for debugging >echo "UID $row[user_id]"; >echo "AUID $uidToAdmin[0]"; > } > > So how can I continue adding to this array in the while loop? while($r

Re: [PHP] Re: Templating engines

2005-04-30 Thread rush
programming language in it self, and it never will. It has a markup language of only 6 idioms: {VARIABLE} {#TRANSLATE} and there is no single sign of presentation logic inside html template, no ifs, no loops, no calls to the methods or functions, nada. All presentation logic is written in php

Re: [PHP] Templating engines

2005-04-29 Thread rush
e their Smarty templates. So as we do not get to exclusive about how thing must be done, we could get along nicely :) rush -- http://www.templatetamer.com/ http://www.folderscavenger.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Templating engines

2005-04-29 Thread rush
TT would separate php from html, it will also not introduce new progaming constructs in template, as many "fat" template systems do. rush -- http://www.templatetamer.com/ http://www.folderscavenger.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Capturing phpinfo()

2004-11-24 Thread rush
ing that string into file is left as an excercise for reader ;) rush -- http://www.templatetamer.com/ http://www.folderscavenger.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Compile

2004-08-16 Thread rush
"Watty" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is it possible to compile a PHP script? And if so, how? there is a roadsend php compiler, but I have not used it myself. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.n

Re: [PHP] Template Question

2004-08-14 Thread rush
"Jonathan Haddad" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] eval takes a string and evaluates it as PHP, which I also thought would work. But this is a file of mixed PHP and HTML. I've designed it this way because I work with guys that are dreamweaver crazy and want to do all th

[PHP] Re: Retrieving Stored Values for Dropdown Menu

2004-07-29 Thread rush
g listboxes, and selecting the items. http://www.templatetamer.org/index.php?SimpleListboxExample rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] For Loop Problems

2004-07-28 Thread rush
something new in PHP5 or I'm doing something > really stupid. I am sending a PDF attachment of a snapshot showing a hint, > made purely with HTML, of what I am trying to achieve. If anyone can help me > it would be greatly appreciated. Thanks guys. I seriously doubt that php has p

Re: [PHP] Re: PHP editor that doesn't require installation

2004-07-28 Thread rush
that does that. WebDrive. A true little gem I may add. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: If...Or...Else

2004-07-26 Thread rush
e precedence issue? One would tend to think || and OR > are perfectly interchangeable. with OR you can write (and even get desirable result ;) : $resultSet = mysql_query( abla dabla ) OR die("something"); since it OR has lower precedence than assignment operator = rush -- http://ww

Re: [PHP] Re: If...Or...Else

2004-07-25 Thread rush
te something like this: mysql_query(...) OR die; so as long mysql_query returns non false result , everything is fine and script continues, if it returns 0 (false), script dies. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP editor that doesn't require installation

2004-07-24 Thread rush
ending on the time zone). Good luck! rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP editor that doesn't require installation

2004-07-24 Thread rush
he scintilla fame. TemplateTamer would also work fine if you just copy the whole directory rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: template and file read

2004-07-21 Thread rush
"Ee" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Would this slow down the site? yes, but in most cases this is not important since bandwith to the client, and database queries have usually orders of magnitude larger bottlenecks. rush -- http://www.template

[PHP] Re: Book Required

2004-07-17 Thread rush
"Harlequin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > There's loads and loads of books available on the subject of PHP & MySQL. > > Does anyone have any recommendations...? here are some: http://www.templatetamer.org/index.

[PHP] Re: Echoing Results in a Table

2004-07-16 Thread rush
plenty of such advices, I assume google will find them nicely. Here are few from TT site: http://www.templatetamer.org/index.php?SimpleMySqlRowList http://www.templatetamer.org/index.php?MySqlRowList http://www.templatetamer.org/index.php?AlternatingListExample rush -- http://www.templatetamer.com/ -

[PHP] Re: Dynamic to Static

2004-07-16 Thread rush
he page that repeat often menues, toolbars, articles, and store resulting html for them in db, so that the do not need to be recalculated each time page is displayed. (I use TT support for cacheing). rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: Storing website templates in sessions

2004-07-08 Thread rush
templates in files, or if you are using Smarty or TemplateTamer in generated php code. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] OOP, Classes, Sharing Code

2004-06-29 Thread rush
ete classes know how to display item in list (itemAsListElement()), know how many items there are in total, and getNextItem iterator. There is a bit more but this should be enough to get you started. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To un

[PHP] Re: PHp Books

2004-02-11 Thread rush
"Rajani Anand Iyer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Can someone recommend some good books on PHP Advanced topics. here is my (amazon) list http://www.templatetamer.org/index.php?RecommendedBooks rush -- http://www.templatetamer.com/ -- PHP G

[PHP] Re: Working with a Front Page developer

2004-02-11 Thread rush
"Chris De Vidal" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Can anyone recommend some template engines? Or tips on using PHP to parse > an HTML doc, replacing it with real data? You could also try TemplateTamer, and I would be glad to help you out if wi

[PHP] Re: multilingual website

2004-02-06 Thread rush
ally get applied to the page. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Zlib Compression || Implementation || Bandwidth Savings?

2004-02-04 Thread rush
while things like this affect user expirience much, much more. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Zlib Compression || Implementation || Bandwidth Savings?

2004-02-03 Thread rush
fect on page loading time for dial-up users. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Zlib Compression || Implementation || Bandwidth Savings?

2004-02-03 Thread rush
d_clean() > at the start and end of each page? I am not sure about ini_set, I am doing it manually, here is the article which gave me directions: http://www.phpbuilder.com/columns/argerich20010125.php3?page=2 rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.ph

[PHP] Re: Zlib Compression || Implementation || Bandwidth Savings?

2004-02-02 Thread rush
directory and tell apache to allow cacheing for that directory. On the other hand if your bandwith goes mainly on thransfer of html source for the pages then compression can shave up to 80% of your bandwith usage. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http:

[PHP] Re: [PEAR] Re: Cacheing data form PHP script

2004-01-28 Thread rush
"Pierre-Alain Joye" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > ps: Rush can you use quotes in reply? until this morning I was pretty certain that I can, however this last reply and OE proved me wrong :) rush -- http://www.templatetamer.com/ -- PHP General

[PHP] Re: Cacheing data form PHP script

2004-01-28 Thread rush
all users. If it is unique for each user, than storing it i session makes sense. If not than you can store it in some file or table in the db. Beeing in one place would make it easier to invalidate the cache since you would not need to poke around all sessions. rush -- http://www.templatetamer.com/ --

Re: [PHP] Using templates (Code & User Interface)

2004-01-25 Thread rush
but I do not think this is a job of template system. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Using templates (Code & User Interface)

2004-01-24 Thread rush
l files in the project, and even has some rudimentary vizards that can offer you some code that fits your template. So if this sounds interesting please try it, and also do not hesitate to mail me if you have some questions, or need some advice. rush -- http://www.templatetamer.com/ -- PHP Gene

[PHP] Re: PHP 5 Book

2004-01-22 Thread rush
when the book went to press). rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Small riddle with classes and references, or bug?

2003-12-22 Thread rush
> is referencing $this now. change the line to > > $GLOBALS['rme'] = & $this; > > to get the expected behaviour. Thank you very much, I was not aware that global $something is just a syntax sugar for reference into the $GLOBALS array. Very spookey indeed, but th

[PHP] Small riddle with classes and references, or bug?

2003-12-22 Thread rush
x27;X'; print_r($rme); echo 'X'; } } $a = new A(); $a->rememberMe(); $a->report(); ?> This little script outputs: XX While I would expect it to return: Xa Object ( [someInstanceVar] => 77 ) X rush -- http://www.templatetamer.com/ -- PHP General Mailing List (htt

[PHP] Re: PHP Template Function

2003-12-19 Thread rush
you see your templates in tree view, sith all variables and subtemplates. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: php/mysql data display

2003-12-18 Thread rush
ome help: http://www.templatetamer.org/index.php?MySqlRowList rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP IDE?

2003-12-15 Thread rush
"Peter Walter" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Rush, > > templatetamer looks like an environment that I would be interested in > using; however, what support resources are available for templatetamer? > Is there a news server, bulleti

[PHP] Re: PHP IDE?

2003-12-14 Thread rush
roductivity. If you are going to work with templates, you can take a look at TemplateTamer, which has IDE geared for such development. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: I need answers for the questions

2003-11-18 Thread rush
"Arivazhagi Govindarajan" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > PHP Questions This would not be homework or exam questions, right? rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: High bandwidth application tips

2003-11-07 Thread rush
static images as cacheabe. * use page output compression on your pages. * if you have some parts of the page(s) that are expensive to calculate introduce some cacheing mechanic in your app. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Templates/Separate content from presentation

2003-11-01 Thread rush
besides Smarty (that seems to be Google's top > choice)? Try also TemplateTamer, it comes with dev environment for tempalte based development. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How can i count time it taked to render the page?

2003-10-26 Thread rush
"Bas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Any help appreciated. here is one general article about it: http://www.phpbuilder.com/columns/akent2926.php3 rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: Read a file, extract and echo some information

2003-10-21 Thread rush
clude that before you use title variable. But it seems to me that in the longer run you could consider some php template system to approach such problems. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: What Is Scalability?

2003-10-20 Thread rush
scale" to differentiate it from complete dead ends. rush p.s. I really enjoyed your book :) -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] NEW: XML Application Objects

2003-10-04 Thread rush
ob. Also means that programmer has to code in 2 languages, php, and in some template language, while in thin templates model he can code in one language domain. b) working with xml+xslt requires more footwork than with TT. Well, again, it is just my reasons. Other people may have other needs and preferences. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Building associative arrays

2003-10-03 Thread rush
any examples. I'm trying to lookup a > key and retrieve the corresponding value. is this what you are lookin for? mysql_fetch_row etc { //let's assume $row is result of mysql_fetch:row(.. $key = $row['key_sql_col']; $value = $row['value_sql_col'];

[PHP] Re: Cleaning up my messy code

2003-09-30 Thread rush
n help you organize yourself better. On it's wiki you will find some examples and tutorials. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Basic Framework

2003-09-18 Thread rush
> put together a simple structure to allow very basic template and module > inclusion with menuing? Some of my users find framework around TemplateTamer very light and simple, yet helpfull. You could consider trying it for yourself, and I will be happy to help you out with questions. rush

Re: [PHP] How to comment out chunk of html/php mixed code?

2003-09-16 Thread rush
"Raditha Dissanayake" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Wrong approach all together. Start using CVS and do not mix php and html - use templates :) rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsub

[PHP] Re: Language filter

2003-09-16 Thread rush
>Any ideas? I think you will hardly cover all dirty or unwanted words. How about having interface for editor to allow posting to appear on the site, so the post will not appear until is allowed by editor? rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.ne

[PHP] Re: Strange error

2003-09-16 Thread rush
"Sid" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello everyone, > > Am I having a bad day or WHAT! I have exactly 5 lines of code as follows > what is the problem here. works fine at my localhost. rush -- http://www.templatetamer.com/ -- PH

[PHP] Re: allow_call_time_pass_reference?

2003-08-30 Thread rush
before new 5.0 semantics is in the place. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Website templating schemes

2003-08-28 Thread rush
ot that important, usually the bottleneck is somewhere else, database most usually. But I am driffting. Thanks for the response! rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Website templating schemes

2003-08-27 Thread rush
system in it self, I think it is is not very strong, or efficient one. So if you would like to use templates you could consider some add-on to help you out. On the other hand if you do not like additional template systems for whatever reason, I am surrendering immediately to pr

[PHP] Re: back button and forms

2003-08-20 Thread rush
you are storing to the session. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP - Interpreted or Compiled Language

2003-08-14 Thread rush
m pure interpreters to pure compilers, and often some blends of the two. For PHP i believe the first implementations were pure interpreters, and nowdays Zend engine is compiler that generates some form of opcode that gets interpreted. rush -- http://www.templatetamer.com/ -- PHP General

[PHP] Re: suggestion on php-editor?

2003-08-14 Thread rush
"Louie Miranda" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > But i was wondering if you guys have any other suggestions? For the extensive list see Keith's listof editors: http://linuxbackup.co.uk/ rush -- http://www.templatetamer.com/ -- PHP Ge

[PHP] Re: How to display?

2003-08-11 Thread rush
Here is small example on how to do it with PHP MySQL and TemplateTamer: http://www.templatetamer.org/index.php?SimpleMySqlRowList rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Code and Good Design Methods

2003-07-13 Thread rush
eparation of html and code, has "clean" templates, and it commes with IDE to support template based development. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: call-time pass-by-reference feature really deprecated?

2003-06-19 Thread rush
pass-by-reference is going to be default in PHP5. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP OOP x Procedural Performance

2003-05-30 Thread rush
eruserJobAdForm, and overided necessary parts, but inhertied 95% of code. So I think there is usage for OOP also in "gui" parts of the code, where it can also help better organization of code, and reuse between the pages or components on the same site. rush -- http://www.templatetamer.com/

[PHP] Re: PHP OOP x Procedural Performance

2003-05-30 Thread rush
thing to make things significantly worse or better performance wise. Also OOP is extensively used in other environments, and unless you are coding critical device drivers, it is rarely to "expensive" in terms of processing time. So my advice would be use OOP, and take benefit of better

Re: [PHP] Fast Templates error in PHP 4.3.1 ?

2003-04-06 Thread rush
module alias. > > So Fast Template users beware! but the function in queston is very rarely used, and in most installations can be renamed without problems. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: XML+XSLT or Smarty again??

2003-03-31 Thread rush
roblem of dirty templates, but with some costs in inreased complexity. With TT you would have less things to do to achieve similar, but I assume that in the end it is largely a matter of taste and/or preferences. Sincerely, rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http:

Re: [PHP] Re: XML+XSLT or Smarty again??

2003-03-31 Thread rush
roblem of dirty templates, but with some costs in inreased complexity. With TT you would have less things to do to achieve similar, but I assume that in the end it is largely a matter of taste and/or preferences. Sincerely, rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http:

[PHP] Re: XML+XSLT or Smarty again??

2003-03-29 Thread rush
is implemented with simple arrays c) all other glueing is done by TT framework. In addition to that, TemplateTamer offers: * IDE, that can keep track of the project, * tool to visualize template structures (which commes handy in more comlicated and nested structures) * example code generator. ru

[PHP] gd library + animated gif

2003-03-28 Thread rush
Can GD library produce animated gif's? rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Please point me in the right direction

2003-03-25 Thread rush
but would Pearl be better? OO in PHP is less than perfect, but in many cases you could probably stick to the PHP, and avoid a hassle of mixed system. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Help me pervade Bristol City council to use PHP

2003-03-24 Thread rush
HP that the people at Bristol city > Council would of heard of (i.e. high profile sites). It is probably recently overused (and misused), but Yahoo is an example that they should have heard of. A few months ago Yahoo anounced that they plan to move to PHP. rush -- http://www.templatetamer.com/

[PHP] Re: odd problem

2003-03-24 Thread rush
u can go on, and find out what caused it. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: fast template class

2003-03-22 Thread rush
"Gilberto Garcia Jr." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I´m a newbie on this class. But i´m getting this error. can you post snippet of the code and exact error that you get? rush -- http://www.templatetamer.com/ -- PHP General Mailing List

[PHP] Re: Anybody have any thoughts on Smarty?

2003-03-19 Thread rush
wondering what this list > thought? Anyone using it? Real world? I think that Smarty can definitely help workflow, especially in designer-programer teams. For that situation, maybe you could also take a look at TemplateTamer, which I believe has stricter separation of code and html. rush --

[PHP] Re: Which CMS (if any) should I use for my application.

2003-03-18 Thread rush
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Should I just do this myself ? I do not think you will find something allready done, so probably you would need to wrap something yourself. Some template system will propably come handy though rush -- http://www.template

[PHP] Re: newbie OOP?

2003-03-14 Thread rush
it does sound like a lot of complication, especially in the begging, but once you get a hang of it, it is a real time saver, an let's you concentrate on your applications behavior and functionality. If you need some more advice how to use TemplateTamer and OO togehter, drop me an e-mail. rus

[PHP] Re: creating class

2003-03-05 Thread rush
tion site_init() { echo 123; } } $new_midgard = new site_init(); rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] question about smarty

2003-03-04 Thread rush
y if you would like to evaluate other options, you can also give a shot to the TemplateTamer. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] [ANN] TemplateTamer 1.0.3 released

2003-03-03 Thread rush
Hello, After several months of beta, TemplateTamer 1.0 has been released, and it can be downloaded from the TemplateTamer web site: http://www.templatetamer.com/ rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Re: classes and functions in include files

2003-02-27 Thread rush
file and use them outside that > file (in the file that includes that file that is) then can you do the same > with classes and functions yap. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] creating flat versions of php pages

2003-02-24 Thread rush
bstripper.net/ ? it can save the whole site including various parameters to the pages. The page names are far from pretty though :) rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: smarty vs. patTemplate vs. inclu

2003-02-21 Thread rush
t with your template engine, yeah, why not, especially if you have some more complex logic on those 6/8 pages. I have used TemplateTamer on such sites. But if you need to learn engine just for that site, that can be overkill, but then again, you can use that knowledge in the future fo

[PHP] Re: smarty vs. patTemplate vs. includes - newbie q

2003-02-19 Thread rush
it also generates compiled code, and can support various cacheing approaches. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Forms Question

2003-02-15 Thread rush
users drive, or to the server - so this information > would have to be kept in memory. Would an array work in this situation? how about using layers and javascript to switch between the parts of the form. User will have wizard like behaviout (form with next and prev buttons), and to the php

[PHP] Re: Templates

2003-02-14 Thread rush
separation of templates and logic, and does not suffer from code creeping back into the templates. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Alternating Row Colors in PHP........

2003-02-09 Thread rush
et_example.php3?count=3538 same code can also be used for more sofisticated effects, and finer formatting. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: any windows php developers out here?

2003-02-09 Thread rush
properly. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Class Interfaces

2003-02-09 Thread rush
ehro_interface { function a1() {} function a2() {} function a3() {} } rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: 3 tier web development

2003-02-07 Thread rush
since it offers very strong separation, encourages class based development, and includes development environment to do so. Other well known options include FastTemplate, Smarty, .. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

[PHP] Re: Best way to include multi-lingual support in an application.

2003-02-05 Thread rush
the WORDKEY, and substitue translation in the output. In your app you can then detect the current language setting, and return appropriate translation. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Framework

2003-02-03 Thread rush
code the tags in it. Not making that much sense as many think. You hi, give a shot to TemplateTamer, in it looping controls, conditionals, reside in php logic files where they belong not in the html template. rush -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP Framework

2003-02-03 Thread rush
working with them. Finnaly, it usually enourages OO based development of php apps (althoug this is not a strict requirement). Other well know and tried options would be Smarty, xml+xslt, .. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: how to write clean code.

2003-02-02 Thread rush
tance by using some template engine. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] [ANN] TemplateTamer - release candidate

2003-01-29 Thread rush
site. It's main parts are: * Integrated development environment (IDE) * Framework for development of template based applications * Code generator * Template engine The release candidate can be downloaded from TemplateTamer site: http://www.templatetamer.com/ rush --

[PHP] Re: xtemplate & windows

2003-01-26 Thread rush
blem is related to windows. It could be that you have not installed everything needed on it? rush -- http://www.templatetamer.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Is there a way to undo the md5() encryption??

2003-01-22 Thread rush
ume it would be worth a big pile of money ;). rush -- http://www.templatetamer.org/ > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: dreading OOP

2003-01-22 Thread rush
en it does, it will becomme cristally clear, and you will learn to use OO very well in languages that let you get away with non OO. The disadvantages of this approach is that you will have to invest considerable effort, and that you might like Smalltalk too much in the and ;) . For some Smalltalk

[PHP] Re: Making alternate rows of different colour

2003-01-17 Thread rush
e help me with the code? See one possible solution (with TemplateTamer) : http://www.templatetamer.org/index.php?AlternatingListExample rush -- http://www.templatetamer.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   >