• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Good Intro Web programming book?

DukeBlueDevil

Junior Member
Are there any de facto standard/good intro to web programming books out there? I can do your run of the mill boring HTML static page stuff, but I really need to learn how to make dynamic pages. Any help?
 
html != programming

if you're totally new to programming, learn the basic logics with BASIC or something old

with web programming, your primary choices are php, asp/.net, coldfusion
the zend online classes are good
 
what do you mean by dynamic?

there is dynamic HTML, essentially using script to change the html on a page as a user is browsing it.

or there is server side scripting like ASP, PHP, Perl which allow users to interact with the site by requesting and submitting information from your servers or databases.
 
I'd suggest starting off with learning SQL, javascript and php.

you can get most of the basics from the web. And its free.

If you are going to look for books, it will really depend on your personality. I perfer code heavy books, but my friends perfer theory heavy books. Its all in how you learn.
 
Back
Top