Difference between revisions of "MVC Introduction"

From GeeklogWiki
Jump to: navigation, search
m (Reverted edit of ShiYan, changed back to last version by Tony)
 
Line 2: Line 2:
  
 
Before continuing on, be sure you understand what MVC is.  I'll demonstrate the details of how MVCnPHP through the sample application.
 
Before continuing on, be sure you understand what MVC is.  I'll demonstrate the details of how MVCnPHP through the sample application.
 
 
[http://www.shneon.com 霓虹灯]
 
[http://www.junyuan.com.cn 制作网页]
 
[http://www.junyuan.com.cn/cnstrct 建站]
 
[http://www.junyuan.com.cn/design 网页设计]
 
[http://www.junyuan.com.cn/page 网页制作]
 
[http://www.junyuan.com.cn/site 网站制作]
 
[http://www.junyuan.com.cn/site_design 网站设计]
 
[http://www.junyuan.com.cn/site_con 网站建设]
 
[http://www.junyuan.com.cn/web 企业上网]
 
[http://www.junyuan.com.cn/con_site 建设网站]
 
[http://www.junyuan.com.cn/dsgn_pg 设计网页]
 
[http://www.junyuan.com.cn/mk_site 制作网站]
 
[http://www.junyuan.com.cn/net 网络公司]
 
[http://www.junyuan.com.cn/dsgn_site 设计网站]
 
[http://www.junyuan.com.cn/com_con 企业建站]
 
[http://www.junyuan.com.cn/ebiz 电子商务]
 
[http://www.junyuan.com.cn/database 数据库开发]
 
[http://www.junyuan.com.cn/dvlp_dtbs 开发数据库]
 
[http://www.junyuan.com.cn/program 程序开发]
 
[http://www.junyuan.com.cn/dvlp_prgrm 开发程序]
 
[http://www.junyuan.com.cn/data 数据库]
 
[http://www.junyuan.com.cn/e_mail 企业邮局]
 
[http://www.junyuan.com.cn/e_email 企业电子信箱]
 
[http://www.junyuan.com.cn/email 电子信箱]
 
[http://www.junyuan.com.cn/mailbox 邮局]
 
[http://www.junyuan.com.cn/flash_mk flash制作]
 
[http://www.junyuan.com.cn/flash_dsgn flash设计]
 
[http://www.junyuan.com.cn/ani_dsgn 动画设计]
 
[http://www.junyuan.com.cn/ani_mk 动画制作]
 
[http://www.junyuan.com.cn/mk_ani 制作动画]
 
[http://www.junyuan.com.cn/dsgn_ani 设计动画]
 
[http://www.junyuan.com.cn/ecard 多媒体电子名片]
 
[http://www.junyuan.com.cn/cdrom 多媒体设计]
 

Latest revision as of 13:32, 19 May 2005

The model-view-controller, commonly referred to as MVC, is an industry standard solution to a long time problem in software. For years, software architects have been trying to find ways to cleanly separate the user interface from the business logic from the data access details. MVC provides a theorhetically simple solution to this problem. The MVC pattern was originally developed in Smalltalk and was made wildly popular by the Java community. I will not be able to give the background of MVC the in-depth converage it deserves so please, take the time to Search on MVC. FWIW, I did put a little background on MVC in the MVCnPHP package in CVS.

Before continuing on, be sure you understand what MVC is. I'll demonstrate the details of how MVCnPHP through the sample application.