These course is free and helps you to learn AS3 (ActionScript 3.0) programming language starting from the beginner level.
- These introductory Lessons in ActionScript 3.0 are a continuation of the Flash lessons section, where there are already presented the tools and basic element which must be known to create Flash documents, and also to use AS3 scripts.
<ul> <li>http://coursesweb.net/html/</li> <li>http://coursesweb.net/css/</li> </ul>
.some_class { display: list-item; }
var obj = { "courses": ["php", "javascript", "ajax"] }; var jsonstr = JSON.stringify(obj); alert(jsonstr); // {"courses":["php","javascript","ajax"]}
$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>'; $dochtml = new DOMDocument(); $dochtml->loadHTML($strhtml); $elm = $dochtml->getElementById("dv1"); echo $elm->nodeValue; // CoursesWeb.net