Actionscript/javascript Course

Not available content for this page.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which type of <input> creates a color well control for selecting a color value?
type="text" type="color" type="date"
<input type="color" name="get_color" />
Which CSS method rotates the HTML element at a given degree?
scale() translate() rotate()
#some_id:hover {
  transform: rotate(60deg);
  -ms-transform: rotate(60deg);    /* IE 9 */
  -moz-transform: rotate(60deg);   /* Firefox */
}
Click on the function that returns the number with the highest value.
pow() min() max()
var maxn = Math.max(8, 4, 88, 56);
alert(maxn);      // 88
Which function prevent the same file from being included more than once in a page?
include() include_once() require()
include_once("some_file.php");

Last accessed pages

  1. Cookies (832)
  2. Redirects (4813)
  3. Check and Validate input field when loses focus, with PHP via Ajax (6765)
  4. PHP PDO - Select query, fetch (29185)
  5. HTML5 Quick Tutorial (4949)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (116)
  2. Read Excel file data in PHP - PhpExcelReader (36)
  3. The Mastery of Love (31)
  4. PHP Unzipper - Extract Zip, Rar Archives (31)
  5. SSEP - Site Search Engine PHP-Ajax (21)
Chat
Chat or leave a message for the other users
Full screenInchide