Php-mysql Course


- All these scripts are free, and have helpful explanations in their code, useful for those interested to learn PHP.


If God wants, new PHP - MySQL - AJAX scripts will be added soon.

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."
PHP-MySQL Scripts

Last accessed pages

  1. Validate radio and checkbox buttons (9989)
  2. Paragraphs, Line break, Horizontal rule (4249)
  3. CSS Outline (2575)
  4. Working with HTML attributes in PHP (13511)
  5. Ajax-PHP Chat Script (49236)

Popular pages this month

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