Jump to content

kukooi

Members
  • Posts

    5
  • Joined

  • Last visited

kukooi's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. kukooi

    flash help

    meaning..1- how to make the text stay on the screen upon clicking.2 - after clicking for the text to appear the background image become faded
  2. kukooi

    flash help

    would like to check how to make the background image go fade for a while for text to appear upon clicking onto those button that are make onto the imagethe text need to be there for sometime b4 clicking onto another buttoneg singapore map. if i have map dots on the map to show the location.Once user click onto the dots information wil show out.. but how to make the map go fade for some time
  3. kukooi

    Advice on .php codes

    check with u for the 1st part isnt i need to create as seperate .php page or i just copy it and paste it at any part of my html page
  4. if given mysql records..how to use .php to display the records out
  5. JavaScript - how to validate e-mail --------------------------------------------------------------------------------function Validate_String(string, return_invalid_chars) {valid_chars = '1234567890-_.^~abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';invalid_chars = '';if(string == null || string == '')return(true);//For every character on the string. for(index = 0; index < string.length; index++) {char = string.substr(index, 1); //Is it a valid character?if(valid_chars.indexOf(char) == -1) {//If not, is it already on the list of invalid characters?if(invalid_chars.indexOf(char) == -1) {//If it's not, add it.if(invalid_chars == '')invalid_chars += char;elseinvalid_chars += ', ' + char;}}}if(return_invalid_chars == true && invalid_chars != '') {last_comma = invalid_chars.lastIndexOf(',');if(last_comma != -1)invalid_chars = invalid_chars.substr(0, $last_comma) + ' and ' + invalid_chars.substr(last_comma + 1, invalid_chars.length);return(invalid_chars);}elsereturn(invalid_chars == ''); }function Validate_Email_Address(email_address) {//Assumes that valid email addresses consist of user_name@domain.tldat = email_address.indexOf('@');dot = email_address.indexOf('.');if(at == -1 || dot == -1 || dot <= at + 1 ||dot == 0 || dot == email_address.length - 1)return(false);user_name = email_address.substr(0, at);domain_name = email_address.substr(at + 1, email_address.length); if(Validate_String(user_name) === false || Validate_String(domain_name) === false)return(false); return(true);}but it still cant work out... help needed
×
×
  • Create New...