Search results

  1. Marc0

    Validating an Email Address with Regular Expressions

    These few lines of JavaScript go a long way to validate email addresses. window.onload = initForms; function initForms() { for (var i=0; i< document.forms.length; i++) { document.forms[i].onsubmit = function() {return validForm();} } } function validForm() {...
  2. Marc0

    Setting a Target for Frame

    If your site uses frames, it's common to have a framed navigation bar that loads the different pages into the main frame. The main frame is the target for the links in the navigation bar, and to load that main frame using HTML, you use the target attribute of the <a> tag. But if you want to use...
  3. Marc0

    Displaying Random Images with Javascript

    If your site is rich with graphics, or if you are displaying digital artwork, then you may want to have a random image from your collection appear when the user enters your site. This simple HTML creates the page for a random image. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  4. Marc0

    Tips For Form Handling

    Any time you need to gather information from the users of your Web sites, you'll need to use a form. Forms can contain most of the usual graphical interface elements, including entry fields, radio buttons, check boxes, pop-up menus, and entry lists. In addition, HTML forms can contain...
  5. Marc0

    What is your favorite programming language?

    I like PHP, it is easy to develop or creating websites
  6. Marc0

    Favorite language for app development ?

    Php is number 1. Facebook is base on php language
Top