<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    
    <channel>
    
    <title>CodeIgniter Forums</title>
    <link>http://codeigniter.com/forums/</link>
    <description>CodeIgniter Forums</description>
    <dc:language>en</dc:language>
    <dc:rights>Copyright 2010</dc:rights>
    <dc:date>2010-03-21T01:34:30-06:00</dc:date>
    <admin:generatorAgent rdf:resource="http://www.pmachine.com/" />
    

    <item>
      <title>respond_to just like on rails</title>
      <link>http://codeigniter.com/forums/viewthread/150006/</link>
      <guid>http://codeigniter.com/forums/viewthread/150006/#When:01:19:12Z</guid>
      <description>&lt;p&gt;hey guys.. when I was reading about rails, I figured out that we can get the response from the server the way we want just telling on the controller what format we want to just like that:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.example.com/aiports.js&quot;&gt;http://www.example.com/aiports.js&lt;/a&gt;
&lt;/p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #007700&quot;&gt;class &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;AirportsController &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;ApplicationController&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;#here we have the action&lt;br /&gt; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;def index&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;@&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;airports &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Airport&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;find &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;all&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;#and here the format wich the method will respond&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;respond_to &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;do |&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;format&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;|&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;format&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;html&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;# do nothing, allow Rails to render index.rhtml&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;format&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;json&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&#123; render &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;json &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt; @&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;airports&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;to_json &#125;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;format&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;xml&amp;nbsp;&amp;nbsp;&amp;nbsp;&#123; render &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;xml &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt; @&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;airports&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;to_xml &#125;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br /&gt;end &lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;I think it is easy to implement on PHP, but the point is : how to insert the format (or extension) in front of the controller, as in &#8220;www.example.com/aiports.js&#8221;. I know that must be something about rewrite in htaccess&#8230; but how?&lt;/p&gt;

&lt;p&gt;some tips??&lt;/p&gt;

&lt;p&gt;tks !
&lt;/p&gt;</description>
      <dc:date>2010-03-21T01:19:12-06:00</dc:date>
    </item>

    <item>
      <title>Developer Needed Urgently!</title>
      <link>http://codeigniter.com/forums/viewthread/90022/</link>
      <guid>http://codeigniter.com/forums/viewthread/90022/#When:22:55:30Z</guid>
      <description>&lt;p&gt;Hello, I have been using a freelancer for a project, however, they have stopped responding and need someone who can complete this project in Codeigniter.&lt;/p&gt;

&lt;p&gt;I can send through the current project specs, what he has finished and what it still required.&lt;/p&gt;

&lt;p&gt;I am in AUS&lt;/p&gt;

&lt;p&gt;email benmay at benmay dot org&lt;/p&gt;

&lt;p&gt;Please email me your hourly rate just as a heads up.. and I will email you back with docs etc.&lt;/p&gt;

&lt;p&gt;Please only email me if you can do this project immediately, there is probably no more than 5 &#45; 10 hours work left.. AT Max!
&lt;/p&gt;</description>
      <dc:date>2008-09-03T22:55:30-06:00</dc:date>
    </item>

    <item>
      <title>#wanted# Senior developer to take over web service project</title>
      <link>http://codeigniter.com/forums/viewthread/149594/</link>
      <guid>http://codeigniter.com/forums/viewthread/149594/#When:19:00:58Z</guid>
      <description>&lt;p&gt;hi&lt;br /&gt;
I need a senior developer to take over my current webservice project developed in&lt;br /&gt;
php and based on CodeIgniter framework and WordPress,&lt;br /&gt;
Client side: jQuery, jQuery UI and Google AJAX API&lt;br /&gt;
knowledge of actionscript and  [ga]analytics api a bonus.
&lt;/p&gt;</description>
      <dc:date>2010-03-16T19:00:58-06:00</dc:date>
    </item>

    <item>
      <title>Coder Needed To FInish Project</title>
      <link>http://codeigniter.com/forums/viewthread/149597/</link>
      <guid>http://codeigniter.com/forums/viewthread/149597/#When:19:23:51Z</guid>
      <description>&lt;p&gt;A friend and I are currently preparing to launch our new website called SideFX Gaming.&amp;nbsp; We have approximately 85% of the site completed, all that needs to be done is a few select administrative functions.&amp;nbsp; The site revolves around the community of gamers and will allow them to post their own reviews as well as participate in contests to win free games.&amp;nbsp; We already have a few sponsors lined up, one of which has given us a deadline of 30 days.&amp;nbsp; Administrative functions include member and article management.&amp;nbsp; &lt;/p&gt;

&lt;p&gt;The site is being developed in CodeIgniter.&amp;nbsp; If you are interested in helping us out, drop me an email at scott at sidefxgaming dot com.&amp;nbsp; U.S. residence is preferred.&amp;nbsp; &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.sidefxgaming.com/dev&quot;&gt;http://www.sidefxgaming.com/dev&lt;/a&gt;
&lt;/p&gt;</description>
      <dc:date>2010-03-16T19:23:51-06:00</dc:date>
    </item>

    <item>
      <title>Developer needed for large integrated project</title>
      <link>http://codeigniter.com/forums/viewthread/149811/</link>
      <guid>http://codeigniter.com/forums/viewthread/149811/#When:14:10:10Z</guid>
      <description>&lt;p&gt;MobileStok is a startup working on the very first alpha of our product. We are looking for a creative and innovative Codeigniter developer to drive the development of some data communication models and the entire back&#45;end of the website.&lt;/p&gt;

&lt;p&gt;Please email me some samples of Codeigniter projects you have been involved in and the most innovative aspect of the codeing of each project. I can give more details on Mobilestok as we discuss. Please also send your rates.&lt;/p&gt;

&lt;p&gt;Thank You,&lt;br /&gt;
Zachary
&lt;/p&gt;</description>
      <dc:date>2010-03-18T14:10:10-06:00</dc:date>
    </item>

    <item>
      <title>Webdeveloper needed for several projects</title>
      <link>http://codeigniter.com/forums/viewthread/149755/</link>
      <guid>http://codeigniter.com/forums/viewthread/149755/#When:04:48:22Z</guid>
      <description>&lt;p&gt;We need codeigniter developers for several projects.&lt;br /&gt;
Pls send an e&#45;mail with your:&lt;/p&gt;

&lt;p&gt;&#45; experience&lt;br /&gt;
&#45; hour rate&lt;br /&gt;
&#45; portfolio&lt;/p&gt;

&lt;p&gt;to info at mallcom dot es&lt;/p&gt;

&lt;p&gt;Thanks in advance
&lt;/p&gt;</description>
      <dc:date>2010-03-18T04:48:22-06:00</dc:date>
    </item>

    <item>
      <title>Need developer for a 4&#45;6 week project</title>
      <link>http://codeigniter.com/forums/viewthread/149739/</link>
      <guid>http://codeigniter.com/forums/viewthread/149739/#When:22:54:40Z</guid>
      <description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I have a project that I have started and need to bring in some help as I am extremely busy. I have it about 20% done, it&#8217;s based on CI for a very large corporation.&lt;/p&gt;

&lt;p&gt;Please have the following skill sets:&lt;/p&gt;

&lt;p&gt;&#45; PHP (5+ years experience)&lt;br /&gt;
&#45; CodeIgnitor (2+ years experience)&lt;br /&gt;
&#45; HTML&lt;br /&gt;
&#45; jQuery / AJAX (Have very good knowledge in this area)&lt;br /&gt;
&#45; CSS&lt;br /&gt;
&#45; Best practice in security / code standards&lt;br /&gt;
&#45; You don&#8217;t have to be a designer but be able to distinguish what looks good and what doesn&#8217;t. Be able to extend current design / styles for custom layouts.&lt;/p&gt;

&lt;p&gt;Please email me at the address below the following questions.&lt;/p&gt;

&lt;p&gt;&#45; What is your rate?&lt;br /&gt;
&#45; Do you do development as part of a team or alone?&lt;br /&gt;
&#45; This project is on a very fast paced timeline so we need someone who can complete it within the next 4&#45;6 weeks (which should be fairly in scope).&lt;/p&gt;

&lt;p&gt;If you are interested please response back via email below.&lt;/p&gt;

&lt;p&gt;There is also a possibility this could turn into more projects if you are a good fit.&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br /&gt;
Steve&lt;br /&gt;
sstalder at gmail
&lt;/p&gt;</description>
      <dc:date>2010-03-17T22:54:40-06:00</dc:date>
    </item>

    <item>
      <title>LF: Paypal Integration (paid)</title>
      <link>http://codeigniter.com/forums/viewthread/149667/</link>
      <guid>http://codeigniter.com/forums/viewthread/149667/#When:10:58:55Z</guid>
      <description>&lt;p&gt;I am looking to hire someone to build me a custom and working integrated Paypal lib.&lt;/p&gt;

&lt;p&gt;The lib should allow the website to take CC information and process payment using Paypal without ever going to paypal&#8217;s website. Should have SSL and security built&#45;in.&lt;/p&gt;

&lt;p&gt;If interested PM me. &lt;/p&gt;

&lt;p&gt;&lt;b&gt;This is a paid job. So please indicate how much would you charge.&lt;/b&gt;
&lt;/p&gt;</description>
      <dc:date>2010-03-17T10:58:55-06:00</dc:date>
    </item>

    <item>
      <title>Looking for a CI Developer in NYC</title>
      <link>http://codeigniter.com/forums/viewthread/149603/</link>
      <guid>http://codeigniter.com/forums/viewthread/149603/#When:20:01:06Z</guid>
      <description>&lt;p&gt;Blue State Digital is looking for a full&#45;time web developer to join our growing design and production team.&amp;nbsp; This position is based out of our NY office located in the Flatiron District.&lt;/p&gt;

&lt;p&gt;We&#8217;re a large EE shop, and we&#8217;re looking for people with CodeIgniter experience to help us customize EE.&amp;nbsp; Equally, we&#8217;re looking for someone who can suggest creative solutions to client problems, then back those up with code that came together quickly.&lt;/p&gt;

&lt;p&gt;The full pitch is here:&lt;br /&gt;
&lt;a href=&quot;http://www.bluestatedigital.com/careers/position/careers&#45;web&#45;developer&#45;ny/&quot;&gt;http://www.bluestatedigital.com/careers/position/careers&#45;web&#45;developer&#45;ny/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check it out, check out our exciting client base, and apply if you&#8217;re in the NY area and looking for a great purpose&#45;filled company to call home.
&lt;/p&gt;</description>
      <dc:date>2010-03-16T20:01:06-06:00</dc:date>
    </item>

    <item>
      <title>Additional Freelance Programmer Needed</title>
      <link>http://codeigniter.com/forums/viewthread/149550/</link>
      <guid>http://codeigniter.com/forums/viewthread/149550/#When:09:23:09Z</guid>
      <description>&lt;p&gt;If you know codeigniter, send me some work samples and a cover letter of your experience. I have one programmer and need to add another to speed up the development of certain modules for a client&#8217;s website.&lt;/p&gt;

&lt;p&gt;Job is freelance or fulltime, offsite. We pay biweekly, looking to pay mo more than $20/hr.&lt;/p&gt;

&lt;p&gt;Please send a message. Have a great day.
&lt;/p&gt;</description>
      <dc:date>2010-03-16T09:23:09-06:00</dc:date>
    </item>

    
    </channel>
</rss>