[PHP] Re: Building array ?

2005-05-18 Thread rush
]); // for debugging echo brUID $row[user_id]BR; echo BRAUID $uidToAdmin[0]; } So how can I continue adding to this array in the while loop? while($row=mysql_fetch_array($result)){ // put user ID's into an array; $uidToAdmin[] .= $row[user_id]; } rush -- http

[PHP] Re: php + cvs

2005-05-31 Thread rush
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: weird thing; downloading from a php script stops at exactly 2.000.000bytes

2005-06-09 Thread rush
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/ http://www.folderscavenger.com/ -- PHP

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

2005-07-26 Thread rush
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: Urgent:Php5 fully oops supported? Difference between java oops php5 oops

2005-07-26 Thread rush
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 General Mailing List (http

Re: [PHP] Re: Templating engines

2005-04-29 Thread rush
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

Re: [PHP] Templating engines

2005-04-29 Thread rush
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-30 Thread rush
separated logic.php file. 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: fast template over xsl

2003-01-09 Thread rush
(biased) opinion, you could be better of staying with templates. But you could try TemplateTamer, to simplify, organize, and improve your template development. I believe that TemplateTamer would be more productive than either FastTemplate or xslt. rush -- http://www.templatetamer.org/ -- PHP General

[PHP] Re: Medium to Large PHP Application Design

2003-01-09 Thread rush
ject can be usefull in order to siplify migration to another database, to have good loging, replication etc. rush -- http://www.templatetamer.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Template tutorials?

2003-01-10 Thread rush
one-file' approach .. which I think it's time I changed. you could take a look at the TemplateTamer http://www.templatetamer.org/ rush -- http://www.templatetamer.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: php editor

2003-01-12 Thread rush
I think Scite (http://www.scintilla.org/SciTE.html) can do 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: Making alternate rows of different colour

2003-01-17 Thread rush
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

[PHP] Re: dreading OOP

2003-01-22 Thread rush
ery 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 resources see: www.whysmalltalk.com rush -- http://www.templatetamer.org/

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

2003-01-22 Thread rush
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: xtemplate windows

2003-01-26 Thread rush
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] [ANN] TemplateTamer - release candidate

2003-01-29 Thread rush
of the 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 -- http

[PHP] Re: how to write clean code.

2003-02-02 Thread rush
Anders Thoresson [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Where can I find good guidelines on how to write PHP-code that's easy to read for a human? it is also good idea to separate html from the code, for instance by using some template engin

[PHP] Re: PHP Framework

2003-02-03 Thread rush
nourages OO based development of php apps (althoug this is not a strict requirement). /biased 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

Re: [PHP] PHP Framework

2003-02-03 Thread rush
ch 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: 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: 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 General Mailing List (http

[PHP] Re: PHP - Interpreted or Compiled Language

2003-08-14 Thread rush
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 Mailing List (http

[PHP] Re: back button and forms

2003-08-20 Thread rush
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: Website templating schemes

2003-08-27 Thread rush
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 prevent holly war :) rush -- http://www.templatetamer.com

Re: [PHP] Re: Website templating schemes

2003-08-28 Thread rush
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: allow_call_time_pass_reference?

2003-08-30 Thread rush
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

[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/ -- PHP General Mailing List (http://www.php.net

[PHP] Re: Language filter

2003-09-16 Thread rush
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.net/) To unsubscribe, visit: http

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 unsubscribe, visit: http

[PHP] Re: Basic Framework

2003-09-18 Thread rush
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 -- http://www.templatetamer.com/ -- PHP General Mailing List

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

2003-04-06 Thread rush
! 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

[PHP] Re: PHP OOP x Procedural Performance

2003-05-30 Thread rush
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 organization of your code. Just my 2c. rush -- http

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

2003-05-30 Thread rush
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 General Mailing List (http://www.php.net/) To unsubscribe, visit: http

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

2003-06-19 Thread rush
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

[PHP] Re: Code and Good Design Methods

2003-07-14 Thread rush
templates, and it commes with IDE to support template based development. /promo rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2003-02-05 Thread rush
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

[PHP] Re: Class Interfaces

2003-02-09 Thread rush
ction 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: 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: Alternating Row Colors in PHP........

2003-02-09 Thread rush
ame 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: Templates

2003-02-14 Thread rush
ing 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: Forms Question

2003-02-15 Thread rush
n 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, everything will be submitted as one large form. rush

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

2003-02-19 Thread rush
cacheing approaches. 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
eah, 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 for some other sites. rush

Re: [PHP] creating flat versions of php pages

2003-02-24 Thread rush
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

[PHP] Re: classes and functions in include files

2003-02-27 Thread rush
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

[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

Re: [PHP] question about smarty

2003-03-04 Thread rush
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] Re: creating class

2003-03-05 Thread rush
= 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

[PHP] Re: newbie OOP?

2003-03-14 Thread rush
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. rush -- http://www.templatetamer.com/ -- PHP

[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.templatetamer.com

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

2003-03-19 Thread rush
? 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 -- http://www.templatetamer.com/ -- 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 (http://www.php.net

[PHP] Re: odd problem

2003-03-24 Thread rush
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: Help me pervade Bristol City council to use PHP

2003-03-24 Thread rush
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 General Mailing List (http

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

2003-03-25 Thread rush
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] 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: XML+XSLT or Smarty again??

2003-03-29 Thread rush
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. rush -- http://www.templatetamer.com/ -- PHP General Mailing List

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

2003-03-31 Thread rush
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://www.php.net/) To unsubscribe, visit

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

2003-03-31 Thread rush
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://www.php.net/) To unsubscribe, visit

[PHP] Re: Cleaning up my messy code

2003-09-30 Thread rush
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: Building associative arrays

2003-10-03 Thread rush
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']; $myarray[$key]=$value; } rush -- http://www.templatetamer.com/ Chris Neale [EMAIL

Re: [PHP] NEW: XML Application Objects

2003-10-04 Thread rush
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: What Is Scalability?

2003-10-20 Thread rush
. 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

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

2003-10-21 Thread rush
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: 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 unsubscribe, visit: http

[PHP] Re: Templates/Separate content from presentation

2003-11-01 Thread rush
)? 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: High bandwidth application tips

2003-11-07 Thread rush
. * 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: 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: http://www.php.net/unsub.php

[PHP] Re: PHP IDE?

2003-12-14 Thread rush
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: 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, bulletin board, or other help resource for people

[PHP] Re: php/mysql data display

2003-12-18 Thread rush
?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 Template Function

2003-12-19 Thread rush
, 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] Small riddle with classes and references, or bug?

2003-12-22 Thread rush
) X 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
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 thanks again :) rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http

[PHP] Re: PHP 5 Book

2004-01-22 Thread rush
). 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
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 General Mailing List (http://www.php.net/) To unsubscribe

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

2004-01-25 Thread rush
guess it is a matter of ones own preferences, and what is right approach for them it is not necessary right for me and other way around. I completely agree that it is also necessary to separate bussines logic from the presentation, but I do not think this is a job of template system. rush -- http

[PHP] Re: Cacheing data form PHP script

2004-01-28 Thread rush
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/ -- PHP General Mailing List (http://www.php.net

[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 Mailing List (http

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

2004-02-02 Thread rush
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://www.php.net/) To unsubscribe, visit: http://www.php.net

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

2004-02-03 Thread rush
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.php.net/) To unsubscribe, visit: http://www.php.net

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

2004-02-03 Thread rush
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-04 Thread rush
delivery reduce bandwidth! I agree on that. It is funny that you often find people spliting hairs on optimizing code like but templates are slow or even to the extreme should I use single or double quotes for strings?, while things like this affect user expirience much, much more. rush -- http

[PHP] Re: multilingual website

2004-02-06 Thread rush
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: 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 with it if needed. rush -- http

[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 General Mailing List (http

[PHP] Re: Capturing phpinfo()

2004-11-24 Thread rush
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

Re: [PHP] OOP, Classes, Sharing Code

2004-06-29 Thread rush
(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 unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Storing website templates in sessions

2004-07-08 Thread rush
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

[PHP] Re: Dynamic to Static

2004-07-16 Thread rush
, 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 unsubscribe, visit: http://www.php.net

[PHP] Re: Echoing Results in a Table

2004-07-16 Thread rush
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 General Mailing List (http

[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?RecommendedBooks rush -- http://www.templatetamer.com

[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.templatetamer.com/ -- PHP General

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

2004-07-24 Thread rush
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

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

2004-07-24 Thread rush
folding if I recall correctly. Not making fun of me is also kindly appreciated, although I am not sure if I would have deserved that kind of attention in the first place :). Anyway, I suggest that we put it to rest, and enjoy the rest of the evening/day (depending on the time zone). Good luck! rush

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

2004-07-25 Thread rush
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: If...Or...Else

2004-07-26 Thread rush
|| 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://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net

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

2004-07-28 Thread rush
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] For Loop Problems

2004-07-28 Thread rush
for in: $template-parseTemplate(guest_NameRate, a); if it stands for append, than maybe in second pass through the loop you add 7 fiends to allready existing 7, in 3. pass you add 7 more to 14 existing, etc.. rush -- http://www.templatetamer.com/ -- PHP General Mailing List (http://www.php.net

  1   2   >