Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
php framework suggestion !
Old 08-09-2011, 09:25 AM php framework suggestion !
phazorRise's Avatar
Skilled Talker

Posts: 57
Name: Sachin Gutte
Trades: 0
i'm working with php for quite a time now. I suppose it would be better if i learn some framework and would be added advantage.

Any suggestions for me where to start and which framework to choose ?
__________________
Make everything as simple as possible, but not simpler. — Albert Einstein

Please login or register to view this content. Registration is FREE
phazorRise is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-09-2011, 10:50 AM Re: php framework suggestion !
lizciz's Avatar
Super Spam Talker

Posts: 807
Name: Mattias Nordahl
Location: Sweden
Trades: 0
Personally I really like CodeIgniter. It's easy to use, it simplifies alot of things, helps you to remain consistent in your coding and it's built entirely on php so there's not much configuration required and no need to use the command line.

Also, you can check out this comparison of php frameworks: http://en.wikipedia.org/wiki/Compari...ameworks#PHP_2
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
lizciz is offline
Reply With Quote
View Public Profile Visit lizciz's homepage!
 
Old 08-09-2011, 11:09 AM Re: php framework suggestion !
Physicsguy's Avatar
404 - Title not found

Posts: 920
Name: Scott Kaye
Location: Ontario
Trades: 0
I always thought framework was just a directory layout, like includes/, /config, /libs, etc.
__________________
Check out my
Please login or register to view this content. Registration is FREE
or my
Please login or register to view this content. Registration is FREE
!
Physicsguy is offline
Reply With Quote
View Public Profile
 
Old 08-09-2011, 01:32 PM Re: php framework suggestion !
phazorRise's Avatar
Skilled Talker

Posts: 57
Name: Sachin Gutte
Trades: 0
@lizciz: yes, i googled for some time and found CodeIgniter is really good. I'm thinking about Zend Framework also but i read few articles saying Zend be bit bulky than CodeIgniter. I downloaded CodeIgniter and tried some codes and it's not too difficult.
I'm gonna play with it now.
__________________
Make everything as simple as possible, but not simpler. — Albert Einstein

Please login or register to view this content. Registration is FREE
phazorRise is offline
Reply With Quote
View Public Profile
 
Old 08-10-2011, 04:07 AM Re: php framework suggestion !
lizciz's Avatar
Super Spam Talker

Posts: 807
Name: Mattias Nordahl
Location: Sweden
Trades: 0
Quote:
Originally Posted by Physicsguy View Post
I always thought framework was just a directory layout, like includes/, /config, /libs, etc.
That's a part of it, yes. But there are also much built in functionallity that is performed automatically, so that you don't have to worry about it. In CodeIgniter for example, all input data (i.e. POST and COOKIE) are automatically cleaned, there are different automatic security options (i.e. XSS cleaning, CSRF), libraries and helpers to handle sessions, files, dates, pagination, databases, languages, email, encryption, form validation and more.

Personally I've grown very fond of their Active Record Database Pattern. I'm sure alot of people here know of it already but I didn't before. It's basically just a more convinient way of accessing your database but I really like it.

EDIT: Also, most frameworks (CI included) is built on the Model-View-Control pattern, which lets you keep your backend logic (controls) seperated from the output (views).


Quote:
Originally Posted by phazorRise View Post
@lizciz: yes, i googled for some time and found CodeIgniter is really good. I'm thinking about Zend Framework also but i read few articles saying Zend be bit bulky than CodeIgniter. I downloaded CodeIgniter and tried some codes and it's not too difficult.
I'm gonna play with it now.
I've tried both Zend and Symphony myself, before I found CodeIgniter. But they both operate through the command line (which I'm guessing can be handy, to have it generate much of the code for you) which means there is a whole new way of working and a new syntax you must learn and master. At the time I did not have the time nor the will to do that so I didn't get very far with those frameworks. Since CodeIgniter is built only on php, and I already new php, that seemed like a better option
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.

Last edited by lizciz; 08-10-2011 at 04:13 AM..
lizciz is offline
Reply With Quote
View Public Profile Visit lizciz's homepage!
 
Old 08-10-2011, 10:08 AM Re: php framework suggestion !
Physicsguy's Avatar
404 - Title not found

Posts: 920
Name: Scott Kaye
Location: Ontario
Trades: 0
That sounds really handy! I'll take a look at it so I can forumulate (see what I did there) a good opinion
__________________
Check out my
Please login or register to view this content. Registration is FREE
or my
Please login or register to view this content. Registration is FREE
!

Last edited by Physicsguy; 09-15-2011 at 09:11 PM.. Reason: "I take a look" to "I'll take a look" -> Grammar nub
Physicsguy is offline
Reply With Quote
View Public Profile
 
Old 08-14-2011, 09:07 PM Re: php framework suggestion !
mgraphic's Avatar
Truth Seeker

Latest Blog Post:
JAMISONTUNES
Posts: 2,918
Name: Keith Marshall
Location: Connecticut
Trades: 0
Quote:
Originally Posted by lizciz View Post
I've tried both Zend and Symphony myself, before I found CodeIgniter. But they both operate through the command line (which I'm guessing can be handy, to have it generate much of the code for you) which means there is a whole new way of working and a new syntax you must learn and master.
What do you mean they operate at the command line? Does that mean they can only be downloaded and installed at the command line?
__________________

<mgraphic /> - I don't have a solution but I admire the problem.
mgraphic is offline
Reply With Quote
View Public Profile
 
Old 08-15-2011, 06:19 AM Re: php framework suggestion !
lizciz's Avatar
Super Spam Talker

Posts: 807
Name: Mattias Nordahl
Location: Sweden
Trades: 0
Quote:
Originally Posted by mgraphic View Post
What do you mean they operate at the command line? Does that mean they can only be downloaded and installed at the command line?
No, I mean that after they've been downloaded and installed properly, you use the command line to run a program in which you can then supply commands to add and edit to the structure and functionalities of the site you're building. You use this program to define structure of your site, and the program adds folders and files (file strucutre for i.e. controllers, models and views) and builds and modifies your databases and tables automatically.

It doesn't do ALL of the work of course. You'll still have to do the actual coding in these files yourself, but I guess the goal is to maximize automated work and minimize manual work where ever possible.

As I wrote eariler, I didn't come very far working with any of those framework, so I can't give you a better description than that
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.

Last edited by lizciz; 08-15-2011 at 06:21 AM..
lizciz is offline
Reply With Quote
View Public Profile Visit lizciz's homepage!
 
Old 08-15-2011, 08:32 AM Re: php framework suggestion !
mgraphic's Avatar
Truth Seeker

Latest Blog Post:
JAMISONTUNES
Posts: 2,918
Name: Keith Marshall
Location: Connecticut
Trades: 0
I have absolutely no framework experience, so I was unsure how how that worked.
__________________

<mgraphic /> - I don't have a solution but I admire the problem.
mgraphic is offline
Reply With Quote
View Public Profile
 
Old 08-17-2011, 01:10 PM Re: php framework suggestion !
Jim Gillum's Avatar
Super Moderator

Posts: 4,539
Name: Jim Gillum
Location: Orange City, Florida
Trades: 0
Quote:
Originally Posted by infovisionit1 View Post
MVC framework is good
Why?
Please explain your comment....))
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
My Art Blog

Please login or register to view this content. Registration is FREE
The Groundhog
Jim Gillum is offline
Reply With Quote
View Public Profile Visit Jim Gillum's homepage!
 
Old 08-23-2011, 07:48 AM Re: php framework suggestion !
vectorialpx's Avatar
Extreme Talker

Posts: 249
Name: octavian
Location: Bucharest
Trades: 0
infovisionit1, do you know used non-MVC frameworks?
Im curious!
__________________
you can
Please login or register to view this content. Registration is FREE
vectorialpx is offline
Reply With Quote
View Public Profile Visit vectorialpx's homepage!
 
Old 08-23-2011, 10:58 AM Re: php framework suggestion !
lizciz's Avatar
Super Spam Talker

Posts: 807
Name: Mattias Nordahl
Location: Sweden
Trades: 0
Quote:
Originally Posted by vectorialpx View Post
infovisionit1, do you know used non-MVC frameworks?
Im curious!
Drupal?
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
lizciz is offline
Reply With Quote
View Public Profile Visit lizciz's homepage!
 
Old 08-24-2011, 09:59 AM Re: php framework suggestion !
vectorialpx's Avatar
Extreme Talker

Posts: 249
Name: octavian
Location: Bucharest
Trades: 0
CMS != framework
Drupal != Zend framework
Drupal == Joomla
Zend framework == Cake PHP
__________________
you can
Please login or register to view this content. Registration is FREE
vectorialpx is offline
Reply With Quote
View Public Profile Visit vectorialpx's homepage!
 
Old 08-24-2011, 12:35 PM Re: php framework suggestion !
lizciz's Avatar
Super Spam Talker

Posts: 807
Name: Mattias Nordahl
Location: Sweden
Trades: 0
Quote:
Originally Posted by vectorialpx View Post
CMS != framework
Drupal != Zend framework
Drupal == Joomla
Zend framework == Cake PHP
I don't know if there is any standardized definition of what a framework is, but if there is I think that a CMS would fit in that defintion.
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
lizciz is offline
Reply With Quote
View Public Profile Visit lizciz's homepage!
 
Old 08-24-2011, 01:48 PM Re: php framework suggestion !
NullPointer's Avatar
Will Code for Food

Posts: 2,815
Name: Matt
Location: Irvine, CA
Trades: 0
Quote:
Originally Posted by lizciz View Post
I don't know if there is any standardized definition of what a framework is, but if there is I think that a CMS would fit in that defintion.
It's all semantics but, in general when I think of a framework I think of an approach to designing an application, whereas a CMS is an application. A CMS can be designed using a particular framework, but the CMS is not that framework.

Quote:
Originally Posted by vectorialpx View Post
CMS != framework
Drupal != Zend framework
Drupal == Joomla
Zend framework == Cake PHP
The first two are true, as for the other two, I have no idea what you are talking about. Drupal is not Joomla, and Cake PHP is not Zend.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
NullPointer is offline
Reply With Quote
View Public Profile Visit NullPointer's homepage!
 
Old 08-25-2011, 02:15 AM Re: php framework suggestion !
vectorialpx's Avatar
Extreme Talker

Posts: 249
Name: octavian
Location: Bucharest
Trades: 0
Yes... my bad, I was talking about definitions, not about the entire thing

So, frameworks examples
Zend framework, Cake PHP, Code Igniter etc

CMS examples
Drupa, Joomla, Wordpress

Main ideea : not the same thing (as you also said)

EDIT // @phazorRise
I think Code Igniter is better, when you have a small-medium website. ZendF is to complex to be used in some cases and will only make things harder.
If you will understand CodeI you will also know ZendF and Cake... same MVC principles
__________________
you can
Please login or register to view this content. Registration is FREE

Last edited by vectorialpx; 08-25-2011 at 02:22 AM..
vectorialpx is offline
Reply With Quote
View Public Profile Visit vectorialpx's homepage!
 
Old 09-12-2011, 09:25 AM Re: php framework suggestion !
Novice Talker

Posts: 5
Trades: 0
Joomla and zend is very good and easy to use framework.
epixeltechno is offline
Reply With Quote
View Public Profile
 
Old 09-12-2011, 01:26 PM Re: php framework suggestion !
phazorRise's Avatar
Skilled Talker

Posts: 57
Name: Sachin Gutte
Trades: 0
Quote:
good and easy to use
how ? can you elaborate some things ?
__________________
Make everything as simple as possible, but not simpler. — Albert Einstein

Please login or register to view this content. Registration is FREE
phazorRise is offline
Reply With Quote
View Public Profile
 
Old 09-12-2011, 06:23 PM Re: php framework suggestion !
Average Talker

Posts: 20
Trades: 0
Quote:
Originally Posted by epixeltechno View Post
Joomla and zend is very good and easy to use framework.
At first, you should read few posts above... then comment...

Otherwise, CI is really nice and easy to use FW. It has also very well written user guide and large community.
As vectorialpx already said, for small-medium web apps one of the best FWs.
hellboy124 is offline
Reply With Quote
View Public Profile
 
Old 09-15-2011, 09:23 AM Re: php framework suggestion !
vectorialpx's Avatar
Extreme Talker

Posts: 249
Name: octavian
Location: Bucharest
Trades: 0
To use a framework, you need to know PHP with OOP and MySql
To use a CMS you only have to use it.
__________________
you can
Please login or register to view this content. Registration is FREE

Last edited by vectorialpx; 09-16-2011 at 02:41 AM.. Reason: (someone deleted the post above me)
vectorialpx is offline
Reply With Quote
View Public Profile Visit vectorialpx's homepage!
 
Reply     « Reply to php framework suggestion !

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.56760 seconds with 12 queries