Thứ Hai, 25 tháng 1, 2016

15 code php hay dùng trong lập trình website


Thảo luận trong 'Design Template vBulletin' bắt đầu bởi steven.thien, 3 Tháng một 2011.
New Member

15 code php hay dùng trong lập trình website

Giới thiệu tới các bạn các đoạn code hay dùng nhất trong lập trình php.nên tham khảo bổ sung kiến thức webbsite cho bạn.
1. Send Mail using mail function in PHP

Mã:
01 $to = "admin@user.vn";
02 $subject = "User.vn";
03 $body = "Body of your message here you can use HTML too. e.g. 
  Bold ";
04 $headers = "From: Peter";
05 $headers .= "Reply-To: info@yoursite.com";
06 $headers .= "Return-Path: mailto:info@yoursite.com";
07 $headers .= "X-Mailer:PHP5";
08 $headers .= 'MIME-Version: 1.0";
09 $headers .= 'Content-type: text/html; charset=iso-8859-1";
10 mail($to,$subject,$body,$headers);
2. Base64 Encode and Decode String in PHP

3. Get Remote IP Address in PHP


Nếu người truy cập web cố tình dấu địa chỉ ip này bằng proxy thì sử dụng code sau :


4. Seconds to String



5. Email validation snippet in PHP


6. Parsing XML in easy way using PHP



7. Database Connection in PHP



8. Creating and Parsing JSON data in PHP



Sử dụng mảng $json_string=’{“id”:1,”name”:”rolf”,”country”:”rus sia”,”office”:
["google","oracle"]} ‘;


9. Process MySQL Timestamp in PHP




10. Generate An Authentication Code in PHP




11. Date format validation in PHP




12. HTTP Redirection in PHP




13. Directory Listing in PHP




14. Browser Detection script in PHP




15. Unzip a Zip File




Use the code as following:



0 nhận xét: