Flash/flash Course

Not available content for this page.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which attribute specifies the HTTP method (GET, POST) used to submit the form-data?
action method value
<form action="script.php" method="post"> ... </form>
Which CSS property allows to add shadow to boxes?
background-image box-shadow border-radius
#id {
  background-color: #bbfeda;
  box-shadow: 11px 11px 5px #7878da;
}
Which function removes the first element from an array?
pop() push() shift()
var fruits = ["apple", "apricot", "banana"];
fruits.shift();
alert(fruits.length);           // 2
Indicate the function that can be used to check if a PHP extension is instaled.
function() filetype() extension_loaded()
if(extension_loaded("PDO") === true) echo "PDO is available."

Last accessed pages

  1. Ajax script to Save Canvas Image on Server (6915)
  2. jQuery Drag and Drop Rows between two similar Tables (12812)
  3. CSS Rhombus Shape (7534)
  4. createElement and insertBefore (7337)
  5. The Fifth Agreement (18746)

Popular pages this month

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