Posts Tagged ‘programming’

How to remove period from a string?

How to remove period from a string?
for example: www.domainname.com
It needs to be ‘wwwdomainnamecom’
Solution:
$Newdomainname = ereg_replace(’.’, ”, $domainname);
or
$Newdomainname = str_replace(’.’, ”, $domainname);

VN:F [1.0.8_357]please wait…Rating: 7.0/10 (1 vote cast)

Leave a Comment

How to display 10 records per page?

How to display 10 records per page?
Code
SELECT * FROM `your_table` LIMIT 0, 10
VN:F [1.0.8_357]please wait…Rating: 8.0/10 (1 vote cast)

Leave a Comment