[nyphp-talk] Storing form options.

2012-07-11 Thread Anthony Wlodarski
When building lots of forms, irrespective of form size or complexity if you need to store options where do you do it? I have seen many examples but I guess this boils down to what is a best practice? The way things are currently done is that all form options are stored in a static array in the

Re: [nyphp-talk] Rate limiters for sign ups for a site.

2011-08-15 Thread Anthony Wlodarski
s site receive "high traffic?" or traffic from only one company or subnet? Or is this a site accessible to all? Good luck! - Ben On Aug 15, 2011, at 9:45 AM, Anthony Wlodarski wrote: I'm having a problem with spam bots and am currently research how to build an effective rat

[nyphp-talk] Rate limiters for sign ups for a site.

2011-08-15 Thread Anthony Wlodarski
walls where every user has the same IP address? Also if anyone has any interesting articles about this type of rate/velocity limiting I would be interesting in learning more. Regards, Anthony -- Anthony Wlodarski Lead Software Engineer Get2Know.me (http://www.get2know.me) Office: 646-285-0500

Re: [nyphp-talk] Usernames with whitespace

2011-08-01 Thread Anthony Wlodarski
cases wouldn't collapsing multiple spaces into a single space be a more conservative solution than disallowing the character entirely? Mutaz ___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://

Re: [nyphp-talk] Book recommendation for JS/AJAX?

2011-07-07 Thread Anthony Wlodarski
.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/Show-Participation -- Anthony Wlodarski Lead Software Engineer Get2Know.me (http://www.get2know.me) Office: 646-285-0500 x217 Fax: 646-285-0400 ___ New York PHP Users Group Community Talk Mailing

Re: [nyphp-talk] font properties

2011-05-27 Thread Anthony Wlodarski
Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/Show-Participation -- Anthony Wlodarski Lead Software Engineer Get2Know.me (http://www.get2know.me) Office: 646-285-0500 x217 Fax: 646-285-0400

Re: [nyphp-talk] Writing daemons in PHP

2011-04-08 Thread Anthony Wlodarski
York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/Show-Participation -- Anthony Wlodarski Lead Software Engineer Get2Know.me 646 285 0500 x217 ___ New York PHP Users Group Co

[nyphp-talk] Solr client libraries.

2010-10-25 Thread Anthony Wlodarski
ink I will be changing libraries but it is also good to know what else is out there. What are you using to interface with Sorl and why do you like it? Regards, Anthony Wlodarski Lead Software Engineer get2know.me 646 285 0500 x217 anth...@get2know.me__

Re: [nyphp-talk] MySQL slow query log/general mysql log

2010-09-07 Thread Anthony Wlodarski
file, right? But I guess for this file, MySQL itself won't ever rotate it unlike the binlogs. On Tue, 7 Sep 2010, Anthony Wlodarski wrote: > Then 755 should be appropriate. > > -Original Message- > From: "Matt Juszczak" > Sent: Tuesday, September 7, 2010 2

Re: [nyphp-talk] MySQL slow query log/general mysql log

2010-09-07 Thread Anthony Wlodarski
box. Thanks, Matt On Tue, 7 Sep 2010, Anthony Wlodarski wrote: > I don't know what type of OS this is on Nix/Windows/Other but when MySQL > creates a default slow queries log file for > Ubuntu it places this in /var/log/mysql which is not accessible to anyone > other than super user.

Re: [nyphp-talk] MySQL slow query log/general mysql log

2010-09-07 Thread Anthony Wlodarski
PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/Show-Participation Anthony Wlodarski Lead Software Engineer [http://www.dating2p0.com] Dating 2.0 646 285 0500 x217 anth...@dating2p0.com __

Re: [nyphp-talk] Mongo...sharding??

2010-07-28 Thread Anthony Wlodarski
being used in production with sharding? Anthony Wlodarski Lead Software Engineer [http://www.dating2p0.com] Dating 2.0 646 285 0500 x217 anth...@dating2p0.com ___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listi

Re: [nyphp-talk] Getting Closure - on PHP Closures and 5.3

2010-07-16 Thread Anthony Wlodarski
Netbeans 6.9 also has this feature built in. Anthony Wlodarski Lead Software Engineer [http://www.dating2p0.com] Dating 2.0 646 285 0500 x217 anth...@dating2p0.com___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman

Re: [nyphp-talk] Chicago: Job search leads for a friend in Chicago?

2010-06-03 Thread Anthony Wlodarski
I tried doing a quick search on C's list: http://chicago.craigslist.org/search/?areaID=11&subAreaID=&query=Linux+Administrator&catAbb=jjj From: David Roth To: NYPHP Talk Sent: Wed, June 2, 2010 4:32:10 PM Subject: [nyphp-talk] Chicago: Job search leads for a

Re: [nyphp-talk] MAMP or XAMPP ?

2010-05-10 Thread Anthony Wlodarski
ncies from other tasks installed on the system and allow you to exclude or include cross referenced packages. -Anthony From: Daniel Convissor To: NYPHP Talk Sent: Mon, May 10, 2010 10:21:38 AM Subject: Re: [nyphp-talk] MAMP or XAMPP ? Hi Anthony: On Tue, Apr 27

Re: [nyphp-talk] utf-8, iso-8859-1...

2010-05-06 Thread Anthony Wlodarski
I second, full UTF-8 is awesome down the line for internationalization. First see if MySQL even supports UTF-8 on your system, execute: "SHOW CHARACTER SET;" and utf8 should appear in the list. Then "ALTER TABLE tbl_name CONVERT TO CHARACTER SET charset_name COLLATION collation_name;". Since

Re: [nyphp-talk] PHP Dynamic GET Variables , Do they exist?

2010-04-30 Thread Anthony Wlodarski
I don't think it is the version of PHP you are using for example from my box: anth...@anthony-desktop:~$ php -v PHP 5.2.10-2ubuntu6.4 with Suhosin-Patch 0.9.7 (cli) (built: Jan 6 2010 22:41:56) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies a

Re: [nyphp-talk] Deploying PHP Applications

2010-04-29 Thread Anthony Wlodarski
I additionally preferred the SVN checkout procedure to make the production environment a local working copy that could be used with "svn up". One thing I had to do was make sure that none of the SVN files were accessible via the web. You can throw the following code into a .htaccess file if yo

Re: [nyphp-talk] MAMP or XAMPP ?

2010-04-27 Thread Anthony Wlodarski
I would never recommend that on Ubuntu or a Debain package based systems. Use "sudo tasksel" and then select "LAMP Server". Tasksel is a package management tool for the meta packages that point to the most recent version of the software that exists in the stack. That way you don't have to piece t

Re: [nyphp-talk] innodb settings

2010-04-26 Thread Anthony Wlodarski
InnoDB makes use of row locking as it is transactional. If the row is locked it will make it a little bit more interesting for inserts (last time I checked the storage engine doesn't do table locks any more). Also not to push this off into another thread/mail trail but I think my...@lists.nyphp.o

[nyphp-talk] ZF Tutorial written by Rob Allen

2010-04-23 Thread Anthony Wlodarski
Hello, I was trying to get situated with ZF and get my feet on solid ground with the framework. The official ZF API and Reference guides lacking quite bad but little did I know that Rob Allen sits in a few chat rooms I freqent on Freenode (#phpc). Take a look at it if you are just getting up and

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

2010-04-19 Thread Anthony Wlodarski
I have recently been using Project Pier http://www.projectpier.org/. So far everyone in the office has been a fan of it. On Mon, Apr 19, 2010 at 8:23 AM, Paul M Jones wrote: > There's also "mtrack" from Wez Furlong, the same guy that brought us PDO. > > < > http://netevil.org/blog/2010/01/mtra

Re: [nyphp-talk] What are everyone's thoughts on Zend Framework.

2010-04-17 Thread Anthony Wlodarski
extensively in my projects but found its limitations > on certain projects. > > I'd also be interested to hear what limitations you came across with Cake. > > > On Sat, Apr 17, 2010 at 5:24 PM, Anthony Wlodarski wrote: > >> Yes, you are correct. So far during to

Re: [nyphp-talk] What are everyone's thoughts on Zend Framework.

2010-04-17 Thread Anthony Wlodarski
that took me a while was to figure out where the library was stored with the Apt install. I found the folder then created a symlink and everything was in proper order. -Anthony On Sat, Apr 17, 2010 at 4:06 PM, Ajai Khattri wrote: > On Fri, 16 Apr 2010, Anthony Wlodarski wrote: > &

Re: [nyphp-talk] What are everyone's thoughts on Zend Framework.

2010-04-16 Thread Anthony Wlodarski
16, 2010 at 4:42 PM, Rob Marscher wrote: > On Apr 16, 2010, at 4:35 PM, Anthony Wlodarski wrote: > > What are your thoughts on ZF, what do you like about it and what do you > dislike about it? > > > Pro: > It's nice and modular so you can pick and choose what you us

[nyphp-talk] What are everyone's thoughts on Zend Framework.

2010-04-16 Thread Anthony Wlodarski
I used to use CakePHP extensively in my projects but found its limitations on certain projects. I have tried Symfony but felt it was too heavy and didn't like the whole kitchen sink model (or its ORM) for that matter. Right now I am evaluating platforms on to build my next project on and it has co

Re: [nyphp-talk] netbeans redux

2010-04-07 Thread Anthony Wlodarski
In regards to the word wrap issue, there is a feature in Netbeans where you can set the right most margin and manually make returns. My monitor is 1920x1080 pixels so word wrap is not really a help for me. I can see where this would be applicable to netbooks or laptops. Eclipse from what I can r

Re: [nyphp-talk] Live chat features or similar functionality.

2010-03-19 Thread Anthony Wlodarski
an hour this afternoon learning more about the product and what is involved in the implementation. Thank you Dan and Ajai for the recommendations. On Fri, Mar 19, 2010 at 9:47 AM, Dan Cech wrote: > On 3/19/2010 9:42 AM, Anthony Wlodarski wrote: > > I was discussing with one of th

[nyphp-talk] Live chat features or similar functionality.

2010-03-19 Thread Anthony Wlodarski
I was discussing with one of the product development individuals at my company the idea of implementing a live chat interface akin to Facebook. Are there any existing open source initiatives (php based) that mimic this behaviour or am I going to have to re-invent the wheel Facebook created? Google

[nyphp-talk] Eclipse, try try again

2010-03-18 Thread Anthony Wlodarski
Not to revive a dead issue potentially but I have been using Netbeans (Also Java based.) with Mercurial for my development environment and I have never looked back since. This is coming from a developer who almost had a "VI" tattoo on his calf. It is pretty robust and version 6.8 is as solid as I

[nyphp-talk] CodeIgniter static page controller.

2010-02-16 Thread Anthony Wlodarski
I was a little dismayed at the lack of a generic pages controller to server static views that don't require dynamic data. I did a quick search in the Topic Reference pages for CodeIgniter and couldn't find anything. Well if anyone uses CodeIgniter and wants to re-use my code please do so! You ca

Re: [nyphp-talk] Inspiration for projects.

2010-01-21 Thread Anthony Wlodarski
Well I got bored and built Ubuntu/Deb packages for MongoDB as I am exploring it more with PHP. I have the 32/64 bit versions hosted on my site at: http://anthonyw.net/mongodb-deb-package. It was quite interesting learning dpkg. Also if you encounter any errors during install please let me know a

Re: [nyphp-talk] Inspiration for projects.

2010-01-20 Thread Anthony Wlodarski
Yeah I know I just found that link myself while doing research and talking with fellow developers. Back to the drawing board. -Anthony ___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyph

[nyphp-talk] Inspiration for projects.

2010-01-20 Thread Anthony Wlodarski
I have a large amount of free time on my hand and was sitting around the house trying to come up with an idea for a piece of software that people would actually use. Unfortunately the blank canvas that is my mind is still blank. I guess it would be called "coders block" akin to writers block. How

[nyphp-talk] To dBa or not to dBa,..

2010-01-19 Thread Anthony Wlodarski
If management allows the developers to run the show up until the point of when it really counts I think there is an issue with the management here and not the DBAs or Developers. Any organization will try and meld the two positions together when it benefits them. Once something does break though

Re: [nyphp-talk] Drupal Framework / CMS Question

2009-10-09 Thread Anthony Wlodarski
As a former developer and contributor to the original core of Thrillist.com (built with Drupal 5.x), I can safely say that it is the wrong technology for a lot of websites. It may be great for what Mitch stated, "community sites" but other than that it is a failure in many respects. Even with 6.x

Re: [nyphp-talk] Best Cell Phone for a PHP Programmer

2009-07-28 Thread Anthony Wlodarski
Yes but your chances of getting an app published are slim to none with an iPhone. I find this to be true as the big G was denied this morning. http://www.engadget.com/2009/07/28/google-voice-iphone-app-rejected-current-gv-apps-lose-connectio/ I own a Touch Pro. When making web apps I tailor the

Re: [nyphp-talk] Learned one CMS and want to move on.

2009-07-27 Thread Anthony Wlodarski
wing PHP will qualify you for much more. > > I'm actually in the opposite role you are, I know PHP and am getting > pushed in Wordpress, Drupal and Joomla. > > Brent Baisley > > On Mon, Jul 27, 2009 at 4:06 PM, Anthony Wlodarski > wrote: > > I have been lucky/unf

[nyphp-talk] Learned one CMS and want to move on.

2009-07-27 Thread Anthony Wlodarski
I have been lucky/unfortunate to have acquired quite a lot of knowledge about a certain CMS (Drupal). Now although I built a pretty cool website and have tackled a lot of the scalability issues I believe I have learned all that I can from the software and would like to move on. Currently I am in

Re: [nyphp-talk] where in filesystem to install php application

2009-07-01 Thread Anthony Wlodarski
I myself have used the "/var/www/www.domainname.com" method myself. Another scheme I find worthwhile is to do "/var/www/apps/applciation_name" so I don't need clog the doc root with URL's depending on the client. -Anthony On Wed, Jul 1, 2009 at 11:04 AM, Hans Zaunere wrote: > > Perhaps this is

Re: [nyphp-talk] [0T] Verizon FIOS -- comments?

2009-05-15 Thread Anthony Wlodarski
As someone that lived in South Orange (Seton Hall Alumni) you are going to be disappointed with Cablevision and their support. Best of luck. -Anthony On Fri, May 15, 2009 at 5:57 PM, Andy Dirnberger wrote: > > On Fri, 15 May 2009, David Krings wrote: > > > > > AFAIK Verizon blocks port 80. I us

Re: [nyphp-talk] Switch-Case v. if/else

2009-05-14 Thread Anthony Wlodarski
Would this be a case where APC would decrease execution time of the script? -Anthony On Thu, May 14, 2009 at 5:07 PM, Elijah Insua wrote: > +1 for profiling (http://www.xdebug.org/) > > I nominate Caching as well. > > -- Elijah > > > On Thu, May 14, 2009 at 4:49 PM, Hans Zaunere wrote: > >> >

Re: [nyphp-talk] Switch-Case v. if/else

2009-05-14 Thread Anthony Wlodarski
How many cases are in this switch statement that is causing it to be slow? -Original Message- From: Eddie Drapkin Sent: Thursday, May 14, 2009 2:12 PM To: NYPHP Talk Subject: [nyphp-talk] Switch-Case v. if/else Does anyone know how the PHP Interpreter pulls switch/case statements toget

Re: [nyphp-talk] databases with PHP

2009-05-08 Thread Anthony Wlodarski
server? (I guess a check to see if it is in transit and if so it has to wait for the slave to be updated.) -Anthony On Fri, May 8, 2009 at 11:28 AM, Jerry B. Altzman wrote: > on 5/8/2009 10:17 AM Anthony Wlodarski said the following: > >> It can be a PITA sometimes. The typical usage i

Re: [nyphp-talk] databases with PHP

2009-05-08 Thread Anthony Wlodarski
It can be a PITA sometimes. The typical usage is the master-slave replication. Even with this type of replication there can be some data loss too. -Anthony On Thu, May 7, 2009 at 10:10 PM, David Mintz wrote: > > One nice thing about MySQL, however, is that replication is pretty easy. I > have

Re: [nyphp-talk] databases with PHP

2009-05-07 Thread Anthony Wlodarski
] On Behalf Of Dan Cech > > > > Anthony Wlodarski wrote: > > > Here is an example of a convenience that is not yet built into > > PostgreSQL > > > (and if it is please correct me as I am using 8.1.1). > > > > > > INSERT INTO x (a,b) &g

Re: [nyphp-talk] databases with PHP

2009-05-06 Thread Anthony Wlodarski
ALUES ('1', 'one'), ('2', 'two'), ('3', 'three') -Anthony On Wed, May 6, 2009 at 10:16 PM, Kenneth Downs wrote: > Anthony Wlodarski wrote: > > We use PostgreSQL for our environments. Although it is quite powerful t

Re: [nyphp-talk] databases with PHP

2009-05-06 Thread Anthony Wlodarski
We use PostgreSQL for our environments. Although it is quite powerful there are some ease of use issues with tuning and getting it to perform at its maximum. But the great thing about PostgreSQL is transactions right out of the box, that has been the most useful feature so far. I haven't had a c

Re: [nyphp-talk] [fw-general] Survey: Development environment for PHP/ZFW

2009-05-05 Thread Anthony Wlodarski
That's how I do my majority of debugging, just shooting array's to the browser with print_r. Sometimes though digging through them can be a pain especially if they contain over a thousand indexes. -Anthony On Tue, May 5, 2009 at 9:15 AM, Kenneth Downs wrote: > David Mintz wrote: > > On Mon, M

Re: [nyphp-talk] Remote addess

2009-04-30 Thread Anthony Wlodarski
Well not to beat on a dead horse but has anyone ever found a good use for this (Other than Michele's need for this.)? I have never designed/developed any piece of software in PHP to access its code base via an external server. -Anthony On Thu, Apr 30, 2009 at 9:04 AM, Michele Waldman wrote: > T

Re: [nyphp-talk] Remote addess

2009-04-29 Thread Anthony Wlodarski
I generally in my code do not access an external server for include and include_once or require_once functions. But I believe http://us2.php.net/manual/en/features.remote-files.php can steer you in the right direction. -Anthony On Wed, Apr 29, 2009 at 8:21 PM, Michele Waldman wrote: > When I t

Re: [nyphp-talk] Best practices for naming conventions & coding style?

2009-04-27 Thread Anthony Wlodarski
I think this is more of a comfort issue then an issue with standards. If you work for a company that you would fall back to the company's best practice's. If you are doing freelance/consulting work then you fallback to your own CONSISTENT practices. I emphasize consistent because when you open u

Re: [nyphp-talk] Apache is killing me.

2009-03-11 Thread Anthony Wlodarski
ssing. (apachectl is usually in /usr/sbin). In addition to syslog if Apache is just faulting I would check "error_log" (usually located in "/var/log/httpd"). Hope this helps. -- Anthony Wlodarski www.thrillist.com <http://www.thrillist.com> Web Applications Developer 568

Re: [nyphp-talk] Social Networks and the Technology They Love

2009-02-17 Thread Anthony Wlodarski
One look at the LiveJournal source code and I discovered all the *.php files they link to. This would mean they do at least use PHP. What platforms they use it on is still debatable. -Anthony -- Anthony Wlodarski www.thrillist.com <http://www.thrillist.com> Web Applications Develop

[nyphp-talk] When does an application become to large for just a single page.

2009-02-16 Thread Anthony Wlodarski
on a web page. -Anthony -- Anthony Wlodarski www.thrillist.com <http://www.thrillist.com> Web Applications Developer 568 Broadway Ste. 605 New York, NY, 10012 (o) 646.786.1944 ___ New York PHP User Group Community Talk Mailing Lis

Re: [nyphp-talk] slow php

2009-02-13 Thread Anthony Wlodarski
I would have to agree. The disk I/O is going to be large for a such a data set. I think in this instance it is better to ask a few hundred bigger questions of the database then a few million smaller questions. -Anthony -- Anthony Wlodarski www.thrillist.com <http://www.thrillist.com&g

Re: [nyphp-talk] Non-Profit and Major Corporate PHP Users List

2009-01-30 Thread Anthony Wlodarski
Can't really speak on who is using it but can point you to the whitepaper which might have some company names in it: http://short.ie/php-whitepaper -Anthony -- Anthony Wlodarski www.thrillist.com <http://www.thrillist.com> Web Applications Developer 568 Broadway Ste. 605 New York, N

Re: [nyphp-talk] PHP Scope in foreach construct.

2009-01-26 Thread Anthony Wlodarski
rupal core for times sake. But I didn't know you could use the variable in a foreach as a reference, I will have to take that into consideration when being a memory conservationist in the future. -Anthony -- Anthony Wlodarski www.thrillist.com <http://www.thrillist.com> Web Applicatio

[nyphp-talk] PHP Scope in foreach construct.

2009-01-26 Thread Anthony Wlodarski
and I can't find any answers anywhere else (even on php.net docs). -Anthony -- Anthony Wlodarski www.thrillist.com <http://www.thrillist.com> Web Applications Developer 568 Broadway Ste. 605 New York, NY, 10012 (o) 646.786.1944 ___ New Yo

Re: [nyphp-talk] Run PHP script as service (every 10 seconds)

2008-12-16 Thread Anthony Wlodarski
On your distro of choice execute "man crontab". Also try "crontab -l" to familiarize yourself with how the cron layout looks. -Anthony From: Fernando Gabrieli Reply-To: NYPHP Talk Date: Tue, 16 Dec 2008 06:43:34 -0800 To: NYPHP Talk Subject: Re: [nyphp-talk]

[Fwd: [nyphp-talk] Sun/MySQL/PHP Special Presentation - YOU PICK]

2008-10-29 Thread Anthony Wlodarski
+1 for Writing Tag systems in PHP/MySQL -Anthony Original Message Subject: [nyphp-talk] Sun/MySQL/PHP Special Presentation - YOU PICK Date: Wed, 29 Oct 2008 12:20:54 -0400 From: Hans Zaunere <[EMAIL PROTECT

Re: [nyphp-talk] Open Source CMS for PHP5

2008-08-13 Thread Anthony Wlodarski
, Mark Armendariz <[EMAIL PROTECTED]> wrote: I tried Drupal for a project last year and I'm just plain not a fan. I'd give Drupal 6 a shot before discounting it entirely. justin -- Anthony Wlodarski Web Applications Developer www.thrillist.com 560 Broadwa

Re: [nyphp-talk] Returning users from whiniest they came

2008-07-09 Thread Anthony Wlodarski
I was seeing some odd behavior myself recently. It seems Firefox 3.0 masks it as "(none)" for some reason so that may be an issue to look into. -Anthony Steve Manes wrote: PaulCheung wrote: Could somebody point me in the right direction or make any suggestion?? On Exiting the "my" applicati

Re: [nyphp-talk] ftp_connect(): php_network_getaddresses: gethostbyname failed

2008-07-07 Thread anthony wlodarski
Try this $conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server"); ?> On Jul 7, 2008, at 4:10 PM, Rahmin Pavlovic wrote: The following works fine in shell: ftp ftp.domain.com But my script spins out and returns: Warning: ftp_connect(): php_network_getaddresses: geth

Re: [nyphp-talk] PHP $_SESSION

2008-06-06 Thread anthony wlodarski
PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php Anthony Wlodarski Web Applications Developer www.thrillist.com 560 Bro

Re: [nyphp-talk] PHP $_SESSION

2008-06-05 Thread anthony wlodarski
___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php Anthony Wlodarski

Re: [nyphp-talk] PHP $_SESSION

2008-06-05 Thread anthony wlodarski
Thanks, Nestor :-) ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php Anthony Wlodarski Web Applica

Re: [nyphp-talk] need help about cms design

2008-06-05 Thread anthony wlodarski
smart-questions.html Anthony Wlodarski Web Applications Developer www.thrillist.com 560 Broadway, Suite 308 New York, NY 10012 p 646.274.2435 f 646.557.0803 ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon

Re: [nyphp-talk] need help about cms design

2008-06-03 Thread anthony wlodarski
rg/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php Anthony Wlodarski Web Applications Developer www.thrillist.com 560 Broadway, Suite 308 New York, NY 10012 p 646.274.2435 f 64

Re: [nyphp-talk] New York PHP on LinkedIn and Flickr

2008-05-29 Thread anthony wlodarski
(917) 512-3594 ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php Anthony Wlodarski Web Applica

Re: [nyphp-talk] Off Topic: Postgres user group

2008-05-12 Thread anthony wlodarski
Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php Anthony Wlodarski PHP/MySQL Developer www.thrillist.com 560 Broadway, Suite 308 New York, NY 10012 p 646.274.2435 f 646.557.0803 ___ New York PHP Community Talk Mailing

Re: [nyphp-talk] ColdFusion vs PHP (Ruby, Perl....)

2008-05-01 Thread anthony wlodarski
__ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -- Anthony Wlodarski PHP/MySQL Developer w

Re: [nyphp-talk] ColdFusion vs PHP (Ruby, Perl....)

2008-05-01 Thread anthony wlodarski
COBOL... Perhaps this thread may be a catalyst to develop a better means of accurately surveying language utilization in a granular fashion. -Ed ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.c

Re: [nyphp-talk] A question about run php variable in javascript

2008-05-01 Thread anthony wlodarski
As long as the PHP occurs before the script it should be just fine. Just got doing a tie in of PHP and Javascript for Google Maps that way. -Anthony -- Anthony Wlodarski PHP/MySQL Developer www.thrillist.com 560 Broadway, Suite 308 New York, NY 10012 p 646.274.2435 f 646.557.0803

Re: [nyphp-talk] NYC web dev courses?

2008-04-30 Thread anthony wlodarski
course for PHP (which means enrolling and then paying). Haven't checked in a while. -- Anthony Wlodarski PHP/MySQL Developer www.thrillist.com 560 Broadway, Suite 308 New York, NY 10012 p 646.274.2435 f 646.557.0803 ___ New York PHP Community Talk Ma

Re: [nyphp-talk] using PHP mail function on Windows server - update

2008-04-28 Thread anthony wlodarski
In regards to the error reporting on a debug machine I like to have the php.ini warning set to all. At runtime you can do it bye this function: error_reporting(E_ALL); Hope that helps. -- Anthony Wlodarski PHP/MySQL Developer www.thrillist.com 560 Broadway, Suite 308 New York, NY 10012 p

Re: [nyphp-talk] using PHP mail function on Windows server - update

2008-04-28 Thread anthony wlodarski
LAMP environments, you're not missing much... :) -- Anthony Wlodarski PHP/MySQL Developer www.thrillist.com 560 Broadway, Suite 308 New York, NY 10012 p 646.274.2435 f 646.557.0803 ___ New York PHP Community Talk Mailing List http://lists.nyph

Re: [nyphp-talk] Embrace Dynamic PHP

2008-04-25 Thread anthony wlodarski
I <3 mysql_real_escape_string() -- Anthony Wlodarski PHP/MySQL Developer www.thrillist.com 560 Broadway, Suite 308 New York, NY 10012 p 646.274.2435 f 646.557.0803 ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listi

[nyphp-talk] Saving data from forms

2008-02-07 Thread Anthony Wlodarski
I was just writing something up and I have a question about saving data from forms for a password. So the logic for what I want to do is something like this: Input from form -> check for magic quotes(if not then add quotes) -> md5 value -> save to database. Now what happens if you chang

RE: [nyphp-talk] MySQL bought by SUN.

2008-01-16 Thread Anthony Wlodarski
They didn't buy MySQL but they bought BEA: http://www.mercurynews.com/ci_7986939?nclick_check=1 Anthony Wlodarski 646-285-0500 x230 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Campbell Sent: Wednesday, January 16, 2008

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

2008-01-04 Thread Anthony Wlodarski
Actually crocodile taste more like chicken than chicken tastes like chicken. Anthony Wlodarski 646-285-0500 x230 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Gales Sent: Friday, January 04, 2008 1:51 PM To: NYPHP Talk Subject: Re

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

2008-01-03 Thread Anthony Wlodarski
rison operator... Anthony Wlodarski 646-285-0500 x230 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gary Mort Sent: Thursday, January 03, 2008 5:14 AM To: NYPHP Talk Subject: Re: [nyphp-talk] Why do "cool kids" choose PHP to b

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

2008-01-02 Thread Anthony Wlodarski
Apache/PHP/MySQL from source is easier than working with Java web technologies. My .02 on the matter. Anthony Wlodarski 646-285-0500 x230 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Gales Sent: Wednesday, January 02, 2008 1

RE: [nyphp-talk] OT: MidwestSource??

2008-01-02 Thread Anthony Wlodarski
Also try the NYPHPJobs mailing list. Good resource if you got talent and people want to share the workload with your organization. Anthony Wlodarski Shulman Fleming & Partners 646-285-0500 x230 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [nyphp-talk] Web hosting.

2007-12-19 Thread Anthony Wlodarski
Data centers FTW. Big electricity bill FTL... Anthony Wlodarski Senior Technical Recruiter Shulman Fleming & Partners 646-285-0500 x230 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Sgro Sent: Wednesday, December 19, 2007

RE: [nyphp-talk] Web hosting.

2007-12-19 Thread Anthony Wlodarski
We have about 27000 files that might need to be migrated. Couple of big SQL databases (1gb max) and then personal office storage lockers. Online DVD... I would but then there are all those laws I would be breaking... Anthony Wlodarski 646-285-0500 x230 [EMAIL PROTECTED] -Original Message

RE: [nyphp-talk] Web hosting.

2007-12-19 Thread Anthony Wlodarski
Ben, Thanks for the recommendation, unfortunately the space they offer vs. the high price didn't go by too well with the higher ups. Approximately how long ago was your PHP 4/5 conversion issue? Regards, Anthony Wlodarski 646-285-0500 x230 [EMAIL PROTECTED] -Original Message-

[nyphp-talk] Web hosting.

2007-12-19 Thread Anthony Wlodarski
Looking for a good inexpensive reseller we hosting, can anyone make any recommendations? Is anyone using www.hostgator.com? Thanks, Anthony Wlodarski 646-285-0500 x230 [EMAIL PROTECTED] ___ New York PHP Community Talk Mailing List http

RE: [nyphp-talk] PHP on Nokia

2007-11-28 Thread Anthony Wlodarski
Speaking of mobile devices I Just picked up an HTC Mogul, quite an interesting phone (besides that it only has a JVM to do development in as I wouldn't touch native C++ for it). Would you know of any supporting PHP environments for Windows Mobile 6 devices? Anthony Wlodarski [EMAIL PROT

[nyphp-talk] PDO or sprintf for creating sql queries.

2007-11-08 Thread Anthony Wlodarski
though what are its potential uses? I had a chance to preview bindParam for prepared statements and was like this is awesome! Also does PDO help escape strings or is something like mysql_real_escape_string() always a necessity? Anthony Wlodarski [EMAIL PROTECTED

Re: [nyphp-talk] Learning SQL - Resources & Recommendations

2007-11-03 Thread Anthony Wlodarski
I have also learned a lot just by reading MySQL documentation (and it was bloody hell trying to learn how to combat SQL injection but I think I got a grasp on it). A good way I also learned the rights and wrong was playing in PHPMyAdmin and just testing queries on data that was just there to play

RE: [nyphp-talk] opening files

2007-10-26 Thread Anthony Wlodarski
an image wrapped in an 'img' tag: "" But this assumes that $row is a successful mysql_query. There are additional functions if you know that the extension they can display images or image resources: imagejpeg(), imagegif(), imagepng(). I did not include the actual HTML form as I

RE: [nyphp-talk] [OT] Book search: The best DIV/CSS book?

2007-10-22 Thread Anthony Wlodarski
Ben, This is list of articles that I have read in learning how to implement div elements into what would have been a table layout. http://www.glish.com/css/. Hope it helps. Anthony W.i [EMAIL PROTECTED] From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Sgro (Projec

RE: [nyphp-talk] 40 Tips for optimizing your php Code

2007-10-16 Thread Anthony Wlodarski
Can you point me in the right direction for articles pertaining to database optimization techniques? Anthony Wlodarski [EMAIL PROTECTED] From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kenneth Downs Sent: Tuesday, October 16, 2007 9:03 AM To: NYPHP Talk Subject: Re: [nyphp

[nyphp-talk] Releasing of memory used in results.

2007-10-12 Thread Anthony Wlodarski
What is the difference between let us say: unset($result); and mysql_free_result($result);? I noticed that unset's documentation doesn't include any information about memory being returned. Anthony Wlodarski [EMAIL PROTECTED] __

RE: [nyphp-talk] need help about search engine

2007-10-10 Thread Anthony Wlodarski
I believe you can begin your quest for that type of knowledge here: http://www.roscripts.com/PHP_search_engine-119.html. This is assuming that you have worked with PHP before. Anthony Wlodarski [EMAIL PROTECTED] ___ New York PHP Community Talk

RE: [nyphp-talk] Scripting to get a backup of your current MySQL database.

2007-10-03 Thread Anthony Wlodarski
ally found it before I posted on the user group. Anthony Wlodarski Senior Technical Recruiter Shulman Fleming & Partners 646-285-0500 x230 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Marscher Sent: Wednesday, October 03, 2

RE: [nyphp-talk] Scripting to get a backup of your current MySQL database.

2007-10-03 Thread Anthony Wlodarski
I think for sake of ease of doing this project we will just have a ten minute drop on the server at midnight every night to backup the database. Granted that is a great scheme to get it done and I will investigate how to do so just for knowledge sake. Thanks for the insight. Anthony Wlodarski

RE: [nyphp-talk] Re: talk Digest, Vol 12, Issue 4

2007-10-03 Thread Anthony Wlodarski
discussions on this mailing list are a good way to learn as well. Regards, Anthony Wlodarski Senior Technical Recruiter Shulman Fleming & Partners 646-285-0500 x230 [EMAIL PROTECTED] ___ New York PHP Community Talk Mailing List

RE: [nyphp-talk] Scripting to get a backup of your current MySQL database.

2007-10-03 Thread Anthony Wlodarski
I will set cron to run the scrip tonight and I will let you know how it goes. Anthony Wlodarski Senior Technical Recruiter Shulman Fleming & Partners 646-285-0500 x230 [EMAIL PROTECTED] From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cliff Hirsch Sent: Wednesday, Oct

  1   2   >