Php-mysql Course

With this script (made with PHP and Ajax) you can add in your web site a simple contact form. The visitors of your website will can contact you and send you messages directly from your page.
- It can be included in .php and .html files, or in template, with a simple HTML code (the server must run PHP).
- The form is HTML valid and has an anti-spam verification code.
- The form data is not resend if the page is refreshed.
- You can set the script to send the messages with the mail application from the server, or via GMail (in this case you must have a GMail account). For GMail the script usese the PHPMailer class.


• To Download the script, click this link: Download - simple contact form script (60 KB).

Demo Contact Form:

Send Message

Your Name:  
E-mail:        
Phone:        
Subject:  

Message: (maximum 500 characters)

Instructions

- Download the Archive with the Contact Form script from the Download link above, and follow the instructions from the readme.html file.

- If you have any questions or opinions about this script, please write on the Forum.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which attribute is used in <img> tag for the address of the image?
href src rel
<img src="http://coursesweb.net/imgs/webcourses.gif" width="191" height="63" alt="Courses-Web" />
Which CSS code hides the element on page?
display: none; display: inline; position: relative;
#id {
  display: none;
}
What instruction stops the execution of a while() or for() statement?
continue prompt() break
for(var i = 0; i< 8; i++) {
  if(i > 1) break;
  alert(i);
}
Indicate the function that can create a constant.
define() include() defined()
define("CONSTANT_NAME", "value");
echo CONSTANT_NAME;
Simple Ajax-PHP Contact Form Script

Last accessed pages

  1. The Mastery of Love (7628)
  2. Add, Change, and Remove Attributes with jQuery (46379)
  3. Ajax-PHP Chat Script (49553)
  4. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (143470)
  5. Output or Force Download MP3 with PHP (5831)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (703)
  2. CSS cursor property - Custom Cursors (89)
  3. PHP-MySQL free course, online tutorials PHP MySQL code (63)
  4. Read Excel file data in PHP - PhpExcelReader (63)
  5. The Mastery of Love (59)