Stage 1: Web Development
May 28th, 2010 by LookOutGFX.com
Here we'll cover: PHP, MYSQL, Javascript, HTML, CSS, Smarty Engine, CodeIgniter and much more…
Popularity: 1% [?]

how to start learning web development and what technologies are relevant?
What is the best linux distro for web development?
How to make contacts with US web design and development companies.I have a web development business in India?
What is the most popular web development software?
What web development tools are there that allow you to develop web content with flashy graphics and animation?
What are the most current web development tools?





May 28th, 2010 at 5:53 am
If one is forced to work with php and mysql then what would be the best practice? Is there something better than smarty?
May 28th, 2010 at 6:02 am
Thanks for sharing all the details..gained a lot of knowledge from the above comments too.
May 28th, 2010 at 6:22 am
i agree with that.
May 28th, 2010 at 7:14 am
whether your doing static dynamic pages or full Ajax applications you still need to select and insert data to a database, process it and format it in either full html content or xml/json requests back to the browser. PHP is still the easiest language to do this with.
May 28th, 2010 at 7:40 am
With ajax features becoming more in demand, it becomes harder to manage older systems based on the back end creating while pages dynamically on the server side. It causes you to have to rewrite the javascript every single time you change the php templates. Its much simpler to just have a web server feed static pages (seeds) that are rich in javascript and talk to a now viewless server.
May 28th, 2010 at 8:14 am
I'm more against the paradigm of generating html/tempate content on the server side. The html, css and javascript (and whatever else you use on the front side) should be talking to whatever you have on the back-end through a defined convention instead of php generating a bunch of html to spit out.
using this approach, it doesn't really matter what you use on the back end, as long as it can handle web requests and interface with your client. the server side becomes simpler.
May 28th, 2010 at 8:30 am
OK that is not fair. Coding Object oriented PHP 5 is a lot easier and securer than coding Server Side C or C++ if you want to have raw speed. Java is about the same speed as PHP code that make use of caching with APC so good PHP code is powerful, fast and a lot easier to learn and code. PHP is also so ubiquitous that yo app will run on any host. You will definitely need a dedicated server to run c++ and java apps on.
Learn PHP if you need to create real production apps in the shortest time.
May 28th, 2010 at 8:55 am
server side template systems of any kind (including php hypertext preprocessor) are counter intuitive to a decent AJAX architecture.
May 28th, 2010 at 9:29 am
i wish recruiters and HR would stop asking me to learn retarded shit. why must i always sink down to this level.
May 28th, 2010 at 10:01 am
smarty is retarded. i used it for a year at my job and it served absolutely no purpose. I later decided that php served no real purpose as well. Want a good template system? how about html and css. use javascript and a protocol to talk to an ajax server. server side template systems create are redundant as users demand more interactive javascript anyway and any change to the server side template must be changed in JS anyway..
May 28th, 2010 at 10:35 am
Guessing GammaSouljah below is a programmer.
May 28th, 2010 at 11:23 am
in the grand scheme of things smarty just makes working with php variables in html content a little easier to understand if your are the designer. But is pointless if your the developer and designer as its just another level of time waste to achieve nothing you can't do with raw php.
It can potentially also slow your applications down (even with caching) so i would not bother with it. only use it if your designer has no clue about php or you don't want to give them access to the php parts.
May 28th, 2010 at 12:17 pm
Kohana PHP – (codeigniter fork)
Wipes the Floor with codeigniter. if your serious about writing Fast, Light weight but Powerful php apps, then use that.
May 28th, 2010 at 12:53 pm
this guy is the worst teacher ever.
Why don't you get you facts right before confusing people even more than they need to be
May 28th, 2010 at 1:10 pm
Just a correction, HTML is NOT how you format a page… you do it through CSS. Please make sure you correct that so people do not get confused.
May 28th, 2010 at 1:53 pm
Codeigniter is excellent for PHP.
May 28th, 2010 at 2:46 pm
smarty allows u to create dynamic templates
May 28th, 2010 at 3:12 pm
CodeIgniter is a very powerful framework and I enjoy working with it!
May 28th, 2010 at 4:12 pm
Thanks for the info. Can you share with us more information regarding smarty engine.