Actionscript/actionscript/javascript Course

Not available content for this page.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which attribute indicates that an input field must be filled out before submitting?
required="required" autofocus="autofocus" placeholder="text"
<input type="text" name="name1" required="required" />
Which CSS method increases or decreases the size of the HTML element (including its content)?
translate() scale() skew()
#some_id:hover {
  transform: scale(2, 1.5);
  -ms-transform: scale(2, 1.5);    /* IE 9 */
  -moz-transform: scale(2, 1.5);   /* Firefox */
}
Click on the Date object method that returns the day of the month.
setDate() getMonth() getDate()
var rightnow = new Date();
var day = rightnow.getDate();
alert(day);
Which function is used to upload a file on server?
is_file() move_uploaded_file() fopen()
if(move_uploaded_file($_FILES["field_name"]["tmp_name"], "dir/file_name")) {
  echo "The file succesfully uploaded";
}

Last accessed pages

  1. PHP Unzipper - Extract Zip, Rar Archives (31798)
  2. JpGraph - Create Graph, Charts, Plots in PHP (3813)
  3. The Mastery of Love (6834)
  4. The Essene Gospel of Peace (2450)
  5. MD5 hash string in JavaScript (4771)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (121)
  2. Read Excel file data in PHP - PhpExcelReader (38)
  3. The Mastery of Love (34)
  4. PHP Unzipper - Extract Zip, Rar Archives (34)
  5. Working with MySQL Database (23)
Chat
Chat or leave a message for the other users
Full screenInchide