Tag Archives: php

Easyphp in windows7 64bit

Cách dễ nhất và nhanh nhất để tạo localhost, test tiếc nghịch ngợm chính là dùng easyphp, gọn nhẹ, hơn xampp là cái chắc ) đơn giản, dễ dàng. Nhưng trên bản 64bit nó dở chứng ầm ĩ ko dùng … Continue reading

Posted in Tin học | Tagged , , , , | Leave a comment

php tip

$str = “home::khanhpt::test.tar.gz”; $data = explode(“::”,$str); $data[0] = “root”; $name = join(“::”,$data); echo $name; You could use a regular express to remove everything apart from those characters you wish to keep: $string=preg_replace(‘/[^A-Za-z0-9 _\-\+\&]/’,”,$string); Replaces everything that is not (^) the … Continue reading

Posted in Career | Tagged , | 2 Comments

PHP script to Find out IP address

We can get the IP address of any visitor by using PHP. Finding the IP address is very important requirement for many scripts where we store the members or visitors details. For security reason we can store IP address of … Continue reading

Posted in Career | Tagged , , | 4 Comments

Hiển thị mã HTML trong PHP

Đại loại là dùng lệnh echo để in ra code html, ví dụ <b> Tôi có nhiều tiền </b>, nếu bình thường echo “<b>Tôi tiền</b>”; thì nó sẽ in ra Tôi tiền Các  bạn của tớ ko thích thế, các … Continue reading

Posted in Coding | Tagged , , | 1 Comment