Messin' around with PHP Frameworks...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • blackout
    Confirmed User
    • Jul 2004
    • 615

    #1

    Messin' around with PHP Frameworks...

    I've decided to try to take some of the bit of time I have lately to improve on my php skills. I've got some ideas for bigger projects that would take me forever to code I think. I'm lookin around at frameworks, ran in to CodeIgniter, Yii, Kohana the most.

    I know there are several amazing coders out there, and I also know that at least some of you are using one framework or another. I'm wondering which one would be the best one to get going with this framework stuff.

    Right now I'm using PhpED and a WAMP server for development.

    Any of you "l33t cod3rs" out there using something other than notepad?
    ICQ: 42777193
  • Klen
    • Aug 2006
    • 32235

    #2
    Yes,i using notepad ++ ;)

    Comment

    • Linguist
      Confirmed User
      • Apr 2004
      • 1706

      #3
      Codeigniter would be the easiest to start with. It's a 2-minute install, you don't need shell access and they have awesome documentation
      315-310

      Comment

      • d-null
        . . .
        • Apr 2007
        • 13724

        #4
        posting this for humor value, not as any kind of personal recommendation:


        __________________

        Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
        Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
        Check out the #1 WordPress SEO Plugin: CyberSEO Suite

        Comment

        • HomerSimpson
          Too lazy to set a custom title
          • Sep 2005
          • 13826

          #5
          CI is fine...

          Notepad ++ or EmEditor for editing...
          Make a bank with Chaturbate - the best selling webcam program
          Ads that can't be block with AdBlockers !!! /// Best paying popup program (Bitcoin payouts) !!!

          PHP, MySql, Smarty, CodeIgniter, Laravel, WordPress, NATS... fixing stuff, server migrations & optimizations... My ICQ: 27429884 | Email:

          Comment

          • Zorgman
            Confirmed User
            • Aug 2002
            • 6103

            #6
            EditPlus 2 for PC.
            ---

            Comment

            • fris
              Too lazy to set a custom title
              • Aug 2002
              • 55679

              #7
              CI is neet
              Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

              Comment

              • Tempest
                Too lazy to set a custom title
                • May 2004
                • 10217

                #8
                Originally posted by Zorgman
                EditPlus 2 for PC.

                Comment

                • barcodes
                  Confirmed User
                  • Mar 2011
                  • 2040

                  #9
                  Originally posted by Linguist
                  Codeigniter would be the easiest to start with. It's a 2-minute install, you don't need shell access and they have awesome documentation
                  nettuts has a good tutorial on code igniter
                  heres a link to the 1st of 17 tutes

                  http://net.tutsplus.com/articles/new...scratch-day-1/

                  Comment

                  • V_RocKs
                    Damn Right I Kiss Ass!
                    • Nov 2003
                    • 32447

                    #10
                    Dream weaver

                    Comment

                    • cooldude7
                      Confirmed User
                      • Nov 2009
                      • 4306

                      #11
                      text pad here.

                      Comment

                      • nextri
                        Confirmed User
                        • May 2004
                        • 1661

                        #12
                        cakephp.org is the shit!
                        DivaTraffic - Traffic for Models

                        Comment

                        • grumpy
                          Too lazy to set a custom title
                          • Jan 2002
                          • 9870

                          #13
                          phped with wamp is a ghood choice, combine it with http://trac.edgewall.org/ and you are set
                          Don't let greediness blur your vision | You gotta let some shit slide
                          icq - 441-456-888

                          Comment

                          • Brujah
                            Beer Money Baron
                            • Jan 2001
                            • 22157

                            #14
                            CI or Kohana (a fork of CI), both are good but CI has the better documentation. It's especially a good place to learn to write better PHP and learn basic MVC. Follow the NetTuts link posted earlier. The NetTuts tutorials on CI are very good. You may end up moving to Kohana or other depending on your skill level and preferences.

                            Comment

                            • blackout
                              Confirmed User
                              • Jul 2004
                              • 615

                              #15
                              Thanks, I'm gonna check out some of those other editors. I'm kinda liking PhpED though. I'll give Cake another look I suppose, but the fans of CI seem to have my google search for "php frameworks" overtaken. And yeah, the tutorials are everywhere.
                              ICQ: 42777193

                              Comment

                              • blackout
                                Confirmed User
                                • Jul 2004
                                • 615

                                #16
                                yeah, this shit is ridiculous. It kinda seems like a whole new puzzle trying to put these different ways of doing the same thing together.

                                I took a look at CI and Yii. CI seemed less complicated, but then Yii seemed more powerful. Common Factor: I don't think I could do shit without the tutorials :-\

                                I dunno. Maybe I just gotta pick one, stick with it. But it seems more complicated than a standard functions.php full of functions and a quick reference to it in your index.php using standard php.

                                I'm no pro, by any means, but I've spent the last few days stuck on tutorials and reading reading reading and trying to code something using the MVC methods in those 2 frameworks, and even though I'm just a novice php guy, I could have significantly coded more than I did on those frameworks.

                                I fail. :-(

                                and the NetTuts are deprecated now it seems when using the newest CI. Which brings about concern, are they going to change everything on every release. Seems counter-productive for a system that claims to increase productivity.
                                ICQ: 42777193

                                Comment

                                • Kiopa_Matt
                                  Confirmed User
                                  • Oct 2007
                                  • 1448

                                  #17
                                  Personally, I wouldn't even bother with any of those frameworks, as many of them are bloated pieces of shit, and are only going to confuse you. For example, instead of telling you to learn simple SQL queries, they'll tell you an SQL query should look like:

                                  Code:
                                  $db->select("id,name")->from("customers")->where("name = 'John'")->order_by("id")->limit(50);
                                  Or some shit like that. Not sure what framework that is from, but it's from one of the popular ones. Why someone would decide that's a good idea is beyond me.

                                  You're best off just writing your own framework from scratch. Can't find the one tutorial I really liked, but just Google writing your own simple MVC framework. Look into mod_rewrite, how it works, and start learning from there. It's honestly not that difficult, and definitely nowhere near as difficult as many of the "professional" tutorial writers make it out to be.

                                  PS. While learning, make sure you're solving a problem. Don't just try to learn everything like you would history, for example. Pick a problem, and learn how to solve it. Then pick another problem, and learn how to solve that, and so on.
                                  Last edited by Kiopa_Matt; 06-02-2011, 12:02 AM.
                                  xMarkPro -- Ultimate Blog Network Management
                                  Streamline your marketing operations. Centralize management of domains, pages, Wordpress blogs, sponsors, link codes, media items, sales and traffic statistics, plus more!

                                  Comment

                                  • react
                                    Confirmed User
                                    • Sep 2003
                                    • 673

                                    #18
                                    If you control the environment skip PHP frameworks and go with Ruby on Rails, they just don't compare.
                                    --
                                    react

                                    Comment

                                    • nation-x
                                      Confirmed User
                                      • Mar 2004
                                      • 5370

                                      #19
                                      NetBeans works great but you have to have alot of RAM (I have 8GB).

                                      Comment

                                      • GrouchyAdmin
                                        Now choke yourself!
                                        • Apr 2006
                                        • 12085

                                        #20
                                        vim has pretty neato syntax highlighting.

                                        Comment

                                        Working...