Thứ Sáu, 22 tháng 6, 2012

required pattern





http://i129.photobucket.com/albums/p228/ojiliango/UpLoad_Firefox2/bd44aa20.jpg


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8 />
<title>pattern</title>
</head>
<body>
  <form>
<input required  
pattern="[0-9]{5}(\-[0-9]{4})?|[a-zA-Z]{1,2}\d{1,2}\s?\d[a-zA-Z]{1,2}
name=part title="A zip code or postcode in the format of 99999 or 99999-9999" >
  <input type=submit>
  </form>
</body>
</html>

Thứ Sáu, 15 tháng 6, 2012

Lấy chuỗi không bị cắt kỹ tự !

 function create_summary($text,$num){
    //$text = strip_tags($cont);   
    if(mb_strlen($text,'UTF-8') > $num){
   
        $endpos = mb_strpos($text,' ',$num,'UTF-8');
        $dots = '...';
        if(!$endpos){
        $endpos = mb_strlen($text,'UTF-8');
        $dots = '';
        }   
    }else{
        $endpos = mb_strlen($text,'UTF-8');
        $dots ='';
    }                  
    return mb_substr($text,0,$endpos,'UTF-8').$dots;
}

===================================

Before


After

Thứ Bảy, 9 tháng 6, 2012

Select - Option Cac thanh pho tren the gioi

<select name="jform[params][timezone]" id="jform_params_timezone" class="" aria-invalid="false">
        <option selected="selected" value="">- Use Default -</option>
    <optgroup label="Africa">

Thứ Năm, 7 tháng 6, 2012

popup body



<script language="JavaScript" type="text/javascript">
var div_iPop = '<div id="iCoder" pos="tc" style="display:none;z-index:100000">';
div_iPop += '    <table width="517" height="422" cellspacing="0" cellpadding="2" style="border:1px solid #D349AD;">';