Javascript/ajax Course

Not available content for this page.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which HTML5 tag is indicated to be used as container for menu with navigation links in Web site?
<section> <nav> <article>
<nav><ul>
 <li><a href="http://coursesweb.net/css/" title="CSS Course">CSS Course</a></li>
 <li><a href="http://www.marplo.net/jocuri/" title="Flash Games">Flash Games</a></li>
</ul></nav>
Which CSS property shifts an item horizontally to the left or right of where it was?
text-align clear float
.some_class {
  width: 30%;
  float: left;
}
Click on the Math object method which returns x, rounded downwards to the nearest integer.
Math.ceil(x) Math.abs(x) Math.floor(x)
var num = 12.34567;
num = Math.floor(num);
alert(num);       // 12
Indicate the PHP function which returns the number of characters in string.
mb_strlen() count() stristr()
$str = "string with utf-8 chars åèö";
$nrchr = mb_strlen($str);
echo $nrchr;        // 30

Last accessed pages

  1. Get Duration of Audio /Video file before Upload (15312)
  2. JavaScript strip_tags and stripslashes (8687)
  3. Global Object (482)
  4. Mysql SELECT JOIN tables on two different Databases (4337)
  5. Using file_put_contents, file_get_contents, readfile and file() (8415)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (184)
  2. Read Excel file data in PHP - PhpExcelReader (62)
  3. The Mastery of Love (54)
  4. PHP Unzipper - Extract Zip, Rar Archives (49)
  5. PhpSpreadsheet - Read, Write Excel and LibreOffice Calc files (32)