TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 07-03-2009, 05:22 AM   #1 (permalink)
The Acquainted
 
Randy's Avatar
 
Join Date: May 2007
Location: Your G/F's Closet
Posts: 114
Thanks: 7
Randy is on a distinguished road
Default Html 5

Quote:
Originally Posted by Bruce Lawson, SitePoint.com
To some, it’s an outrageous attempt by browser manufacturers to foist what they want onto developers. In SitePoint’s HTML 5: Now or Never? article, Tommy Olsson described it as “an abomination ... it mocks everything I consider important on the Web.” Others see it as the way forward for developing powerful multimedia web apps on an open architecture, without Flash or Silverlight or similar proprietary technologies. Doug Schepers, the W3C’s Team Contact for the SVG and Web Apps Working Groups says, “HTML 5 is not a technical achievement, it’s a social movement.”

The reason that opinion is so divided is that HTML 5 is more than just a markup syntax for documents, like HTML 4 is. One clue is in the working group’s original name, before it was brought into the W3C camp: Web Hypertext Application Technology Working Group. The original goal for HTML 5 was to make it easier to develop Web applications. There’s evidence of this in the rash of new JavaScript APIs and support for offline development, some of which are already available in a browser near you.
Read More On Sitepoint.com

Find HTML 5 References on w3schools.com

-----------------------

I am curious what are your thoughts on this new concept for HTML 5?

Note: I take no claims for these articles and can not be help responsibly if they are inaccurate, I am simply posting for you to see and to get your opinion.
__________________
Real Programmers always confuse Christmas and Halloween because Oct31 == Dec25 - Andrew Rutherford
Send a message via AIM to Randy Send a message via MSN to Randy
Randy is offline  
Reply With Quote
Old 07-03-2009, 05:33 AM   #2 (permalink)
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Well, aside from the lack of group cooperation (mostly on the <video> supported codec) it's going quite well. (I'm active on the WHATWG mailing list(s).)

The support is rolling in quite nicely (From Mozilla, Opera, Apple, and Google), IE is still failing to implement numerous features which will stall HTML5 to no end.

The goals of HTML5 are great and I'm really excited for the final release of the spec.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Old 10-06-2009, 05:42 PM   #3 (permalink)
The Acquainted
 
buildakicker's Avatar
 
Join Date: Jan 2008
Posts: 119
Thanks: 21
buildakicker is on a distinguished road
Default HTML 5 Standards Mode

Hi all,

I have been thinking a lot about current web development and HTML 5. If I am starting a new site from the ground up, would it be adventageous to use DocType HTML 5 in my new page templates?

Is it true that I can use all of the same mark up from:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
with the html 5 doctype?

Code:
<!DOCTYPE html>
And is it true that HTML5 doctype will force browsers to standards mode? If so, we should then begin developing with it right?
__________________
SkiLeases.com
buildakicker is offline  
Reply With Quote
Old 10-06-2009, 06:54 PM   #4 (permalink)
The Contributor
 
Join Date: Nov 2008
Location: Sweden
Posts: 36
Thanks: 1
hjalmar is on a distinguished road
Default

Quote:
Originally Posted by buildakicker View Post
Hi all,

I have been thinking a lot about current web development and HTML 5. If I am starting a new site from the ground up, would it be adventageous to use DocType HTML 5 in my new page templates?

Is it true that I can use all of the same mark up from:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
with the html 5 doctype?

Code:
<!DOCTYPE html>
And is it true that HTML5 doctype will force browsers to standards mode? If so, we should then begin developing with it right?
Yes, with the html5 doctype you can use both the "loose" and the more strict syntax.

html5 will set any current IE browser to render in standards mode so nothing is stopping you from using it right now. Any advantages? yeah the much nicer doctype declaration :)

It's a long way there and is a process so to stay crossbrowser pretty much nothing has changed.
hjalmar is offline  
Reply With Quote
Old 10-06-2009, 07:29 PM   #5 (permalink)
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

While all the browsers I know of support the HTML Doctype, only a couple support the actual HTML5 tags (like <section> or <article>), so just be aware of that.
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote
Old 10-06-2009, 08:25 PM   #6 (permalink)
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

I love the stuff you can do with javascript and canvas element, the web is gonna get much more interactive, very exciting time to be a web dev! However I fear these new technologies will only remain a small part of the web for years to come, thanks to Redmond dragging there feet as per usual.

Just look at some of this stuff:
http://www.chromeexperiments.com/

very impressive when you think its all html5 + js!
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
Old 10-07-2009, 12:37 AM   #7 (permalink)
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Quote:
Originally Posted by ETbyrne View Post
While all the browsers I know of support the HTML Doctype, only a couple support the actual HTML5 tags (like <section> or <article>), so just be aware of that.
Most browsers, (barring Internet Explorer x.x+), treat any unknown elements as "xml"-ish. This means that they treat those elements as display:block, ect... They still have the normal properties, attributes, and abilities of previous elements <p>,<a>... but they are just not supported by HTML 4.

The IE team and browser is different because back in the way-hay-days of the web there were no real standards (there still are not, HTML5 is just a "forced" suggestion), just suggestions on what to do and how to do it. With IE having a monopoly on the web they decided to create algorithms to adapt and converge all the web documents into one method/design. This involved many contradicting terms, ideas, values, ect.. but created a magically compromised and similar page across many different systems.

With these adaptive algorithms came the need for those to stay similar to comply with business applications/processes. Thus when other bodies (standards groups, browser vendors) came into the view they all wanted to do their own way for everything. This has lead to almost two separate standards, IE and the w3c. Microsoft is stuck with the fact that they have to remain as consistent as possible for businesses and the w3c wants to push all of these radical ideas into the mix [Open Source [en,de]coding, universal error handling, exactly compliant fonts (size, shape, amount, quality), ect...].

With each new draft of HTML5 (no space) Microsoft is pushed farther and farther away from the new spec. They simply cannot change, and it's a very sad fact that I don't think the "open"/html5 web will come for 4-7+ years. IE will need to slowly integrate the new changes into the browser to allow businesses to cope and code for them.

(There may be errors, I wrote it in one shot.)

*EDIT* IE has actually implemented a few features that no other browser has. .onhashchange(); is a HTML5 proposed JS/DOM addition.

Quote:
Originally Posted by sketchMedia View Post
I love the stuff you can do with javascript and canvas element, the web is gonna get much more interactive, very exciting time to be a web dev! However I fear these new technologies will only remain a small part of the web for years to come, thanks to Redmond dragging there feet as per usual.

Just look at some of this stuff:
http://www.chromeexperiments.com/

very impressive when you think its all html5 + js!
All of the ideas have been around from the early computer days, but seeing as browsers have been text-only for a long time and are not compliant with images, being able to run full "touchscreen" applications and dynamic adaptations is really a miracle in design.

I love the new spec and it's very impressive.
__________________
My Site
adamdecaf is offline  
Reply With Quote
Old 10-16-2012, 09:30 AM   #8 (permalink)
The Wanderer
 
Join Date: Oct 2012
Posts: 10
Thanks: 0
lennondevid is on a distinguished road
Default

There are many benefits of HTML5. It provides a new SQL-based database API that can be used for storing data locally, that is client side. You get fully defined and structured database storage. As it will be easy to see which parts of the page are headers, nav, footers, aside, etc.





php web application development | PHP development | php mysql development | cakephp developers

Last edited by lennondevid : 10-23-2012 at 12:13 PM.
lennondevid is offline  
Reply With Quote
Old 10-18-2012, 12:59 PM   #9 (permalink)
The Addict
 
Join Date: Oct 2012
Posts: 244
Thanks: 0
dashixiong is on a distinguished road
Default

Some conservatives have Coach Factory Outlet pushed that critique further, saying that Mr. Obama’s policies are too costly, often assist the wrong people Louis Vuitton Belts and could have the paradoxical effect of driving up college costs. The dispute turns not just on different Coach Factory Outlet assessments of how policies play out, but on differing philosophical views about the role of government. During Gucci Belts his time in office, Mr. Obama has sharply increased aid to low- and middle-income students, notably through the Pell Grant Coach Factory Outlet program, which grew from $14.6 billion given to 6 million students in 2008, to nearly $40 billion for Coach Factory Outlet almost 10 million students this year. His administration also made it easier to request aid, shortening the Coach Factory Online complex federal application and allowing people to transfer their financial information electronically from the Internal Coach Outlet Online Revenue Service database. But while many education experts laud his efforts, analysts of varying political Coach Outlet Online stripes have also questioned how much impact some of the president’s policies will have, noting that the prices Coach Online Outlet charged by colleges, and student borrowing, continue to climb.But behind the headlines about soaring costs, the Coach Factory Outlet Online reality is more complex and wildly uneven, because a growing number of students receive Coach Outlet Online financial aid, and only relatively high-income families pay those fast-rising sticker prices. Adjusted for Coach Factory Online inflation, the College Board calculates, the average net price changed little over the last decade at private Coach Factory Outlet schools, and rose only modestly at public ones.Defending federal spending, Arne Duncan, the secretary of Hermes Belts education, said that for more than 30 years, college prices had risen even when federal aid had not, leading him to believe Coach Factory Online there was zero correlation.
dashixiong is offline  
Reply With Quote
Old 10-22-2012, 08:46 AM   #10 (permalink)
The Addict
 
Join Date: Oct 2012
Posts: 244
Thanks: 0
dashixiong is on a distinguished road
Default Coach Outlet

You’ve relativelyCoach Outlet recently arrived in New Delhi after living in two of Asia’s other great cities,Coach Outlet Store Online Tokyo and Hong Kong, for several years. Do these cities feel like they’re part of the same continent? Yes, and no. In terms Coach Factory Onlineof infrastructure, they couldn’t be more different. Getting regularCoach Outlet power and water at my house in New Delhi is never a sure thing, even though Coach Purse Outlet OnlineI’m paying the same rent that I paid in Tokyo and almost the same electricity prices. Both Hong Kong and Tokyo are also crowded places,Coach Factory Outlet Online but both cities are incredibly well planned and efficiently run. Efficient is not a word I would use to describe my Coach Bags Outlet Onlineday-to-day life in New Delhi. On the other hand, one thing that I think Hong Kong and New Delhi have in common isCoach Handbags Outlet a shared sense of optimism — a feeling that the best is yet to come. That’s definitely not the feeling you get in Tokyo,Coach Outlet Online or in the U.S. when I go home. It’s a big part of what I find addictive about living and working in this part of the world. You feel like you’re watching the future unfold.
dashixiong is offline  
Reply With Quote
Old 03-05-2013, 05:56 AM   #11 (permalink)
The Wanderer
 
Join Date: Feb 2013
Posts: 18
Thanks: 0
kevinloyed is on a distinguished road
Default

HTML5 is a newer version of HTML for browsers that support the features that comprise it. HTML 5's new Canvas allows for both 2D and 3D graphics.
kevinloyed is offline  
Reply With Quote
Old 03-07-2013, 09:03 AM   #12 (permalink)
The Wanderer
 
nancy30's Avatar
 
Join Date: Feb 2013
Location: London
Posts: 8
Thanks: 1
nancy30 is on a distinguished road
Default

Good work sharing sitepoint link, I am waiting for some video tutorials to be released from their end.
nancy30 is offline  
Reply With Quote
Old 04-04-2013, 09:26 AM   #13 (permalink)
The Visitor
 
jamescarter's Avatar
 
Join Date: Apr 2013
Location: USA
Posts: 1
Thanks: 0
jamescarter is on a distinguished road
Default

HTML5 is the latest version of HTML which include so many features which are very useful during programming. I appreciated the features of HTML5 such as <canvas> element for 2d drawing,<audio> and <video> elements for media playback,new form control such as calender,date,time,email etc.
jamescarter is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Exciting Stuff in HTML 5! Wildhoney XHTML, HTML, CSS 20 02-17-2013 03:16 PM
Send function result to html page ? Peuplarchie General 1 05-04-2009 05:58 PM
HTML & Wordpress Integration Wildhoney General 2 01-10-2009 08:11 PM
problem getting data on the html table.... jetnet1 General 2 11-24-2008 06:55 PM
Make html pages work like php sam Tips & Tricks 2 02-09-2007 01:00 PM


All times are GMT. The time now is 04:17 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design