Ex/vuejs Course

Not available content for this page.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which attribute specifies the URL address where to send the form-data?
method action name
<form action="script.php" method="post"> ... </form>
Which CSS property can be used to break lines in the middle of words?
word-wrap line-height font-size
#id {
  width: 100px;
  word-wrap: break-word;
}
Which function sorts the elements of an array into alphabetical order, based on the string values?
pop() sort() shift()
var tutorials = ["php", "html", "css", "flash"];
tutorials.sort();
alert(tutorials[0]);          // css
Indicate the function that returns the value of the last element into an array.
current() next() end()
$code =[10=>"Perl", 20=>"PHP", 21=>"Python", 30=>"JavaScript");
$last = end($code);
echo $last;      // JavaScript

Last accessed pages

  1. Working with MySQL Database (3078)
  2. Update and Delete MySQL data with data from Form (1236)
  3. JavaScript code and PHP (40703)
  4. Register and show online users and visitors (39403)
  5. htaccess - Redirect URL address from HTTP and WWW to HTTPS (547)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (71)
  2. Read Excel file data in PHP - PhpExcelReader (20)
  3. PHP Unzipper - Extract Zip, Rar Archives (19)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (15)
  5. SSEP - Site Search Engine PHP-Ajax (15)
Chat
Chat or leave a message for the other users
Full screenInchide