[PHP] Re: Zend + Eclipse + Standized Framework

2005-11-14 Thread Roman Ivanov
Dan Rossi wrote: Personally, i am trying to avoid all these frameworks until everyones ideas are collabroated into one as i think they only work for some or for the developers purposes only. What features do you need from a framework? -- PHP General Mailing List (http://www.php.net/) To unsub

[PHP] Re: Zend + Eclipse + Standized Framework

2005-11-14 Thread Roman Ivanov
Dan Rossi wrote: Just found this article via phpeclipse.de stating Zend will be including Eclipse framework in their development schedules :) http://www.zend.com/news/zendpr.php?id=109 Id like to know more about this standardized application framework. Me too, considering the fact that I spe

[PHP] Is echo tag reasonably portable?

2005-11-15 Thread Roman Ivanov
Can 'http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is echo tag reasonably portable?

2005-11-15 Thread Roman Ivanov
Robin Vickery wrote: On 11/15/05, Roman Ivanov <[EMAIL PROTECTED]> wrote: Can ' The manual's reasonably explicit on the subject: "Note: Using short tags should be avoided when developing applications or libraries that are meant for redistribution, or deployment on PHP

Re: [PHP] Re: Zend + Eclipse + Standized Framework

2005-11-16 Thread Roman Ivanov
Greg Donald wrote: Maybe Zend will get it right where all the previous attempts I've seen/used are less than great. Personally, I would start creation of PHP framework by cleaning up PHP sytax. It's freakin' impossible to make complex OOP clean: $this->output(array('dir', 'template'), &new B

[PHP] Re: better way to mix html and php code?

2005-11-16 Thread Roman Ivanov
For long strings I suggest using echo <

[PHP] Re: recursive queries-tree view implementation

2005-11-18 Thread Roman Ivanov
blackwater dev wrote: I am sure others have encountered this so I am just looking for ideas. Say I have an ancestry application where the users can enter parents, children, etc. The children have children, etc. table people id parent_id what is the best way to pull this from the d

[PHP] Re: Compile a stored code with php

2005-11-19 Thread Roman Ivanov
Khorosh Irani wrote: Hello How I can compile a php code that is stored in a database when the programm is running? Thanks eval -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: new to sessions, but learning

2005-11-20 Thread Roman Ivanov
matt VanDeWalle wrote: hello, I know session vars work between two pages but will sessions work across 3 and 4 pages or not? Yes. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: new to sessions, but learning

2005-11-20 Thread Roman Ivanov
I mean, yes they will work across multiple pages. Thy store data locally and re-load it, identifying necessary information by session ID which is stored in cookie on the client side. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Some good framework for new website

2005-11-20 Thread Roman Ivanov
赵光 wrote: i am new to php,i want to write a website contain blog(mutil-user),forum and album. This is pretty basic stuff. Why don't you try some CMS first? http://www.xaraya.com/ http://www.joomla.org/ http://www.drupal.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] Re: Zend + Eclipse + Standized Framework

2005-11-22 Thread Roman Ivanov
Jochem Maas wrote: > Roman Ivanov wrote: > >> Greg Donald wrote: >> >>> Maybe Zend will get it right where all the previous attempts I've >>> seen/used are less than great. >> >> >> >> Personally, I would start creation of PHP f

[PHP] Re: What software do you use for writing PHP?

2005-12-07 Thread Roman Ivanov
I use JEdit with code browser plug-in. Once it's started, it's quite fast. It's Java-based, so it runs both on windows and linux. Very easy to configure, has many useful coding features. If you need more, just install some plug-ins. -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] Class Constant PHP 5

2005-12-07 Thread Roman Ivanov
Stephen Leaf wrote: Dynamically setting a constant would break the very rule of it being a constant in the first place. Did you say something about my Java? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Non-trivial task of converting text to HTML

2005-12-07 Thread Roman Ivanov
Task: Create a script that converts text into HTML with paragraphs. Problem: Input text could use the book notation, as well as the web notation, plus it can contain HTML. == This is a title This is a Book paragraph. This is another book paragraph. This is yet another book paragraph, bu

Re: [PHP] Non-trivial task of converting text to HTML

2005-12-07 Thread Roman Ivanov
Eric Gorr wrote: Quoting Roman Ivanov <[EMAIL PROTECTED]>: Output text should be correctly formatted without using lots of br's and  's. Doing so manually is not a problem, I would just use for web paragraphs, and for book paragraphs. However, formatting such text with

[PHP] Re: Preventing Cross Site Scripting Vulnerbilities

2005-12-07 Thread Roman Ivanov
Michael B Allen wrote: Can someone recommend a general method for avoiding / eliminating XSS vulnerbilities with PHP? IMO, the best way to avoid XSS is to filter _output_. My script: http://nengine.korsengineering.com/files/src/misc/HtmlFilter.phps -- PHP General Mailing List (http://www.php.

[PHP] Re: QUERY_STRING Variables and POST

2005-12-08 Thread Roman Ivanov
Michael B Allen wrote: I'm using the POST method but I would also like to access QUERY_STRING parameters. Is there a convienient global array for these? If not, what is the definitive method for accessing them? $_GET $_REQUEST + read manual -- PHP General Mailing List (http://www.php.net/) To