<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Fri, 24 May 2013 00:03:31 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Community News: PHP Newsletter Announced - PHP Weekly]]></title>
      <guid>http://www.phpdeveloper.org/news/18814</guid>
      <link>http://www.phpdeveloper.org/news/18814</link>
      <description><![CDATA[<p>
<i>Wes Mason</i> has started up another project to provide you with a weekly dose of curated PHP content direct to your mailbox - the <a href="http://phpweekly.info/">PHP Weekly Newsletter</a>:
</p>
<blockquote>
[The newsletter is a] curated weekly injection of hot PHP links for your inbox, including the latest articles of interest, videos from talks and tutorials, new projects and of course the latest news in PHP language and platform development. I promise to try to keep links fresh, comments relevant and the hate out of sight.
</blockquote>
<p>
The first edition of the news letter will be coming out in about a week (on December 6th), so if you'd like to sign up, head over to the <a href="http://phpweekly.info/">main site</a> for the project and enter your address. 
</p>]]></description>
      <pubDate>Wed, 28 Nov 2012 10:34:19 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[9Lessons: User Signup using Facebook Data]]></title>
      <guid>http://www.phpdeveloper.org/news/15796</guid>
      <link>http://www.phpdeveloper.org/news/15796</link>
      <description><![CDATA[<p>
On the 9Lessons site there's <a href="http://www.9lessons.info/2011/01/user-signup-using-facebook-data.html">a recent tutorial</a> showing you how to make a customized signup form that still uses the Facebook authentication as its base.
</p>
<blockquote>
Using facebook registration plug-in users can easily sign up on your website using facebook data. With one simple facebook login the form will be filled with user appropriate data. This plug-in is a simple iframe you can place it anywhere on your webpage. You can also add a custom field if facebook doesn't have.
</blockquote>
<p>
He walks you through the four (or five, depending on your view) different steps you'll need to make the simple form. You'll need to have a database to store the user's local data in, including their Facebook uid. A simple iframe on your page gives you a Facebook login form and a basic callback page handles the successful submission and saving of Facebook's response. You can add a custom field in the form's json and it'll pass right on through too.
</p>]]></description>
      <pubDate>Mon, 24 Jan 2011 13:48:55 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPBuilder.com: Use jQuery to Build a Newsletter Subscription Popup with a MySQL/PHP Backend]]></title>
      <guid>http://www.phpdeveloper.org/news/15783</guid>
      <link>http://www.phpdeveloper.org/news/15783</link>
      <description><![CDATA[<p>
On PHPBuilder.com today <i>Jason Gilmore</i> has a new tutorial posted showing how to combine PHP, MySQL and a jQuery interface to <a href="http://www.phpbuilder.com/columns/jquery-newsletter-subscription-popup/Jason_Gilmore01192011.php3">create a newsletter subscription popup</a> for your site that doesn't interfere with the flow of the site.
</p>
<blockquote>
More recently, websites have taken a more aggressive approach in terms of inviting visitors to subscribe to a newsletter or consider some other special offer. The approach involves displaying a popup window the very first time a visitor navigates to the website. The visitor has the option of either responding to the offer or providing his e-mail address by interacting with the popup, or can choose to close the popup at which point it won't reappear for a (hopefully) significant period of time.
</blockquote>
<p>
He uses two jQuery plugins - <a href="http://www.ericmmartin.com/projects/simplemodal/">simplemodal</a> and <a href="https://github.com/carhartl/jquery-cookie">jquery-cookie</a> to do some of the heavy lifting on the frontend. Full HTML, CSS and Javascript code are provided to make the interface work. There's no backend code for the PHP/MySQL integration, but it's a pretty simple form so it shouldn't be overly difficult.
</p>]]></description>
      <pubDate>Fri, 21 Jan 2011 09:17:27 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[phpDevelopment Blog: Zend Framework Tutorial Series: Part 3 '" Login and Signup with (RE)Captcha]]></title>
      <guid>http://www.phpdeveloper.org/news/14783</guid>
      <link>http://www.phpdeveloper.org/news/14783</link>
      <description><![CDATA[<p>
In a new post to his phpDevelopment blog <i>Andrei Gabreanu</i> has added the <a href="http://phpdev.ro/zend-framework-tutorial-series-part-3-login-and-signup-with-recaptcha.html">third part</a> of his Zend Framework tutorial series. This time he looks at using a CAPTCHA image in your form via a call to a Zend_Captcha component.
</p>
<blockquote>
he third part of the tutorial series will present you with a fully functionable solution for a login and signup page that activates a RECaptcha, via Zend_Captcha as a Service, when the user attempts to login/signup 3 times and fails. The tutorial will also show you how to use your models and how to structure your business logic inside your module based application.
</blockquote>
<p>
They help you set up the database configuration information, create a sample layout for the page, work with the authentication and users controllers and, of course, the form. The inclusion of the CAPTCHA is as easy as adding a Zend_Form_Element_Captcha to the Zend_Form instance and setting up the user/signin process.
</p>]]></description>
      <pubDate>Tue, 13 Jul 2010 12:30:32 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[NETTUTS.com: How to Code a Signup Form with Email Confirmation]]></title>
      <guid>http://www.phpdeveloper.org/news/13276</guid>
      <link>http://www.phpdeveloper.org/news/13276</link>
      <description><![CDATA[<p>
On the NETTUTS.com website today there's <a href="http://net.tutsplus.com/tutorials/php/create-a-signup-form-with-email-confirmation/">a new tutorial</a> showing how to create a simple signup form (username, password, email address) for your site with a MySQL backend database.
</p>
<blockquote>
In this tutorial, we are going to be creating a user signup form that adds a user to a database, and then sends out a confirmation email that the user must click on before their account will be activated.
</blockquote>
<p>
Everything's provided - the database structure, the code to make the submit process work, how to confirm the user once they come back in and creating a simple templating system for the emails it sends. You can <a href="http://nettuts.s3.amazonaws.com/444_signup/source.zip">download the full source</a> to get it all in one bundle.
</p>]]></description>
      <pubDate>Thu, 24 Sep 2009 07:50:20 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: WEBINAR: Everything you need to know about the PHP 5 Certification Exam]]></title>
      <guid>http://www.phpdeveloper.org/news/9435</guid>
      <link>http://www.phpdeveloper.org/news/9435</link>
      <description><![CDATA[<p>
The Zend Developer Zone has <a href="http://ez.no/company/news/gruner_jahr_evolves_with_ez_publish">posted today</a> about a new webinar from Zend touting "everything you need to know" about the PHP 5 certification exam that the company offers.
</p>
<blockquote>
Zend Certified Engineers are the most sought after PHP developers. [...] To become a Zend Certified Engineer developers must pass the Certification exam covering a wide range of PHP topics. Attend the Zend Certified Engineer Webinar and hear all the details about the exam.
</blockquote>
<p>
The webinar will happen on January 30th at about 9am (PST) and will be hosted by <i>Beth Gomez</i>. You can reserve your spot today by <a href="https://zend.webex.com/mw0304l/mywebex/default.do?siteurl=zend&service=6&main_url=%2Fec0509l%2Feventcenter%2Fmainframe.do%3Fmainurl%3Dhttps%253A%252F%252Fzend.webex.com%252Fec0509l%252Feventcenter%252Fevent%252FeventAction.do%253FtheAction%253Ddetail%2526confViewID%253D194609031%2526siteurl%253Dzend%26siteurl%3Dzend">signing up</a> over on Zend's pages on Webex.com or just get more information about it from <a href="http://www.zend.com/en/company/news/event/webinar-everything-you-need-to-know-about-the-php-certification-exam">this page</a> over on the Zend site.
</p>]]></description>
      <pubDate>Wed, 16 Jan 2008 11:16:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Lukas Smith's Blog: Opcode Best Practices (webcast)]]></title>
      <guid>http://www.phpdeveloper.org/news/7429</guid>
      <link>http://www.phpdeveloper.org/news/7429</link>
      <description><![CDATA[<p>
In a <a href="http://pooteeweet.org/blog/636">new post</a>, Lukas Smith</i> mentions (among other things) an upcoming <a href="http://www.phparch.com/shop_product.php?itemid=151">webcast</a> via the folks over at php|architect covering the best practices of using the opcode cache in your applications.
</p>
<blockquote>
<p>
oin us as we host PHP internals developer, Stas Malyshev (Zend) with a presentation on optimizing your use of PHP opcode caching software, be it <a href="http://pecl.php.net/apc">APC</a>, <a href="http://www.zend.com/products/zend_platform">Zend Platform</a>, or another.
</p>
<p>
This talk will cover techniques that you can use to squeeze the most performance out of your cache, such as avoiding runtime includes and conditional class declaration.
</p>
</blockquote>
<p>
<a href="http://www.phparch.com/shop_product.php?itemid=151">Register soon</a> because the event happens this Friday (March 16th, 2007) and there is no cost to attend - but you do have to sign up.
</p>]]></description>
      <pubDate>Wed, 14 Mar 2007 09:49:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: PHPLondon Conference 2007 Announced]]></title>
      <guid>http://www.phpdeveloper.org/news/7123</guid>
      <link>http://www.phpdeveloper.org/news/7123</link>
      <description><![CDATA[<p>
As posted <a href="http://www.onekay.com/blog/archives/20">here by <i>Marc Gear</i></a> and <a href="http://blog.joshuaeichorn.com/archives/2007/01/18/phplondon-conference-2007/">here by <i>Joshua Eichorn</i></a>, the PHPLondon <a href="http://www.phplondon.org/wiki/HomePage">user group</a> has announced their <a href="http://www.phpconference.co.uk/">PHPLondon Conference 2007</a>.
</p>
<blockquote>
<p>
After the success of 2006 the PHP London user group are staging the UK's second dedicated PHP conference on Friday, 23 February 2007.
</p>
<p>
The conference will be a low-cost event, costing &pound;50 for the day. There is a 230 person limit on the number of delegates we can support, and demand is expected to be high, so make sure you register early. If you'd like to register, check out <a href="http://www.phpconference.co.uk/">the conference's main page</a> and enter your information today.
</p>
</blockquote>
<p>
The conference will be happening over at the Keyworth Centre and speakers attending include <i>Cal Evans</i> (of Zend's Developer Zone), <i>Simon Laws (of IBM) and <i>Rasmus Lerdorf</i> (creator of PHP).
</p>]]></description>
      <pubDate>Thu, 18 Jan 2007 13:21:40 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHP-GTK Community Site: PHP-GTK, throw it down.]]></title>
      <guid>http://www.phpdeveloper.org/news/7083</guid>
      <link>http://www.phpdeveloper.org/news/7083</link>
      <description><![CDATA[<p>
If you're a PHP-GTK developer and have heard anything about the <a href="http://www.phpdeveloper.org/news/6595">PHPThrowdown event</a> that sounds interesting, check out <a href="http://www.php-gtk.eu/php-gtk-throwdown-team">this new post</a> on the PHP-GTK community site. They're looking for a few good coders.
</p>
<blockquote>
After a few cups of tea the idea of putting several teams together so that we could have some competition within the ranks came about. Without any word on what the categories are for certain, there is still the Miscellaneous category. So either way by category or Miscellaneousness we can get some good stuff in and you will not have to see me cry.
</blockquote>
<p>
If you'd like to help the cause and join the team, <a href="http://www.opsat.net/ptd/interestapp.php">submit your information</a> on their signup form and wait for further instructions. Should you or any of your team be captured...wait, wrong team. If you'd like to talk some with the other coders that you could be working with, though, check out their IRC channel over on the Freenode network - #php-gtk.
</p>]]></description>
      <pubDate>Fri, 12 Jan 2007 07:49:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Tobias Schlitt's Blog: Last chance: Know a lot about PHP in 2 days, for free!]]></title>
      <guid>http://www.phpdeveloper.org/news/6434</guid>
      <link>http://www.phpdeveloper.org/news/6434</link>
      <description><![CDATA[<p>
<i>Tobias Schlitt</i> has a <a href="http://schlitt.info/applications/blog/index.php?/archives/496-Last-change-Know-a-lot-about-PHP-in-2-days,-for-free!.html">last chance</a> post on his blog today for those that might still want to attend the <a href="http://weekender.phpugdo.de">PHP Weekender event</a> starting this Saturday (Oct 7th).
</p>
<blockquote>
<p>
I just returned from vacation and realized, that the PHP Weekender (the free-of-charge workshop weekend for PHP enthusiasts, organized by the [http//phpugdo.de PHP Usergroup Dortmund]) has 90 verified, registered attendees so far. 
</p>
<p>
This is really cool, we never expected such a huge number of signups! Anyway, the PHP Weekender starts on upcoming Saturday, October 7th. If you did not register, yet, you should take your heels and run to our website, since we will only accept registrations until tomorrow 12:00 CET.
</p>
</blockquote>
<p>
There's stil time to get your name on the list, so <a href="http://weekender.phpugdo.de">head on over</a> and sign up today before it's too late!
</p>]]></description>
      <pubDate>Thu, 05 Oct 2006 15:38:00 -0500</pubDate>
    </item>
  </channel>
</rss>
