Thứ Ba, 29 tháng 7, 2014

Xóa dòng này !!!


Function check table có tồn tại không !

        function table_exist($nametable){
            $nametable=trim($nametable);
        if($this->sql_numrows($this->sql_query("SHOW TABLES LIKE '".$nametable."'"))==1)
            return true;
        else
            return false;
        }

Thứ Sáu, 25 tháng 7, 2014

Resize scale png transparent !!




            $source = "".$inpath."/".$inimg."";
            $source = imagecreatefrompng($source);
            $newImg=resizePng($source , 50, 50);
            imagepng($newImg, "".$inpath."/".$inimg."");
            ImageDestroy($newImg);

function resizePng($im, $dst_width, $dst_height) {
    $width = imagesx($im);
    $height = imagesy($im);
    $dst_height = $height/($width/$dst_width);
    $newImg = imagecreatetruecolor($dst_width, $dst_height);
    imagealphablending($newImg, false);
    imagesavealpha($newImg, true);
    $transparent = imagecolorallocatealpha($newImg, 255, 255, 255, 127);
    imagefilledrectangle($newImg, 0, 0, $width, $height, $transparent);
    imagecopyresampled($newImg, $im, 0, 0, 0, 0, $dst_width, $dst_height, $width, $height);
    return $newImg;
}

Thứ Năm, 24 tháng 7, 2014

Thứ Tư, 23 tháng 7, 2014

Show tất cả biến global !!! Thật là nguy hiểm !


        echo "<pre>";
            print_r($GLOBALS);
        echo "</pre>";
        die;

Thứ Ba, 22 tháng 7, 2014

Thứ Hai, 21 tháng 7, 2014


Link github
https://github.com/vihoangson/vihanviet/blob/master/class.step_cart.php

update shopping cart


Thứ Sáu, 18 tháng 7, 2014

Mở chế độ chạy .htaccess trên Appserv

Bước 1: Vào thư mục cài đặt (thông thường C:\AppServ\Apache2.2\conf\)
Mở file httpd.conf tìm đến
#LoadModule rewrite_module modules/mod_rewrite.so
Bỏ dấu # ở phía trước, trở thành
LoadModule rewrite_module modules/mod_rewrite.so
Bước 2: Không cần thiết lắm, mục đích là để server nhận đúng tên file htaccess, vì trong windows khó đặt tên file có dấu . ở trước nên ta thêm vào x cho thuận tiện thôi.
Tìm AccessFileName.htaccess
Thay bằng: AccessFileName x.htaccess
Save all.
Bước 3. Khởi động lại Apache
Thường thì vào: C:\Appserv\Apache2.2\bin chạy file ApacheMonitor.exe click Restart Hoặc click Start>>All Programs>> … tìm trong đó. Enjoy
Sưu tầm: Al0nex’s blog

Thứ Ba, 15 tháng 7, 2014

disable get_content


Dòng 40 security.php

if (stristr($_SERV

Thứ Bảy, 12 tháng 7, 2014

regular expression css selector



Div[id^="son"]
Div[id*="son"]
Div[id$="son"]