Re: [nyphp-talk] Better Way to Secure HTML Forms with Hash Tokens?

2014-06-25 Thread Felix Shnir
One way of handling xss detection in your case would be to check if your form/page is being framed. Something like window.top != window would tell you that. Based on this, you could notify the server to invalidate one time token generated for this page if the page is in a frame. On Jun 24, 2014 12:

Re: [nyphp-talk] Web browser quality

2012-05-11 Thread Felix Shnir
Firefox is probably one of the better browser out there still. If you are experiencing crashes, this most likely indicates corrupted profile -- this occurs often during upgrades, but there many factor why it would go corrupt. Try creating a new profile and see how this affects it. On Fri, May

Re: [nyphp-talk] Good project management tool?

2010-04-19 Thread Felix Shnir
I'll throw one in. PivotalTracker.com. Its very light to use, has a great web interface, and free. Felix. On Mon, Apr 19, 2010 at 10:15 AM, Tom Melendez wrote: > On Mon, Apr 19, 2010 at 7:13 AM, Paul A Houle > wrote: > > Matt Juszczak wrote: > >> > >> Hi all, > >> > >> So I know all of thes

Re: [nyphp-talk] JSON and MVC

2009-07-18 Thread Felix Shnir
On Jul 18, 2009 11:20 AM, "Daniel Convissor" < dani...@analysisandsolutions.com> wrote: Hello again: > $result = ; > > $out = array(); > foreach ($result as $row) { > $out[$row['loa... Oh, make that: $out[$row['loan_id']][] = $row; :/ --Dan -- T H E A N A L Y S I S A N D S O L U T I O N S C O M

Re: [nyphp-talk] Ajax UI, where to display a detailed view of a record

2008-12-09 Thread Felix Shnir
Then look no further than this: http://prototype-ui.com/ On Tue, Dec 9, 2008 at 5:19 PM, David Mintz <[EMAIL PROTECTED]> wrote: > My thanks to everybody. Modal div sounds like a nice idea. I am already > using Prototype so I think I will look for an implementation based on it > rather than JQuer

Re: [nyphp-talk] safari and sessions?

2008-03-17 Thread Felix Shnir
Well, dunno if this is going to be very helpful, but Safari tends to chew on cookies if it crashes... http://www.37signals.com/svn/posts/891-safari-why-must-you-be-such-a-cookie-monster Felix. On Mon, Mar 17, 2008 at 2:34 PM, Marc Antony Vose <[EMAIL PROTECTED]> wrote: > Hi there: > > At the mo

Re: [nyphp-talk] Why do "cool kids" choose PHP to build websites instead of Java

2008-01-02 Thread Felix Shnir
Jeez, whats up with all the Java hating today? First, LUG, now PHP list. This article is a useless rant and indeed a waste of bandwidth, but the constant Java sux in this and PHP rules in that conversation is a lot more annoying simply because it is an irrelevant flame war. This is a PHP list, le

Re: [nyphp-talk] Ajax 101: what to return from a POST

2007-05-03 Thread Felix Shnir
Jon means that the response status should be 412... var req = this.getTransport(); req.open('POST', uri, true); req.onreadystatechange = function (aEvt) { if (req.readyState == 4) { if(req.status == 200) var r = eval(req.responseText);

Re: [nyphp-talk] Can somebody suggest a site to download WYSIWYG editor ?

2007-04-03 Thread Felix Shnir
tinymce & fckeditor. google'em On 4/3/07, Aniesh joseph <[EMAIL PROTECTED]> wrote: Hello Can somebody suggest a site to download WYSIWYG editor ? Regards Aniesh Joseph ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/li

Re: [nyphp-talk] Re: Automatically Print Pages

2006-12-20 Thread Felix Shnir
This isn't possible with plain vanilla JS. You'd need to look into ActiveX controls, even then it might not be possible... Felix. On 12/20/06, Joseph Crawford <[EMAIL PROTECTED]> wrote: Ok so i misunderstood the actual requirement. THe page would have to print on the client machine as there

Re: [nyphp-talk] Textarea formatting

2006-10-19 Thread Felix Shnir
Well, if you are talking about displaying in HTML then you should replace \n\r with a Felix.On 10/19/06, Ben Sgro (sk) < [EMAIL PROTECTED]> wrote:Hello all,I have a textarea field that can .. store text. I'm using it to save emails for example w/a form.I grab the posted data and call addslashes( )