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 letters A-Z or a-z, the numbers 0-9, space, underscore, hypen, plus and ampersand – with … Read more

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 our visitors who are doing any purchases or recording the geographical location of the visitor … Read more

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 bạn ấy thích in ra nguyên là <b>Tôi tiền</b> cơ, vậy làm thế nào để? … Read more