Melih Onvural wrote:
Hi,
I've just moved over to Windows and PHP and I was wondering if anyone knows where to find the gd2.dll library? Off the PHP site it's in *NIX form and I'm not sure how to compile that on a Windows machine so I figured a .dll would be much simpler. Thanks,
melih
If you dow
Jordi Canals wrote:
Student wrote:
I want to trim the following text
[i:abcdef]
Hi,
You can do:
$data = '[i:something]';
$array_data = explode(':',$data);
and you will have:
'[i' in $array_data[0]
'something]' in $array_data[1]
If i understod corretly, you want to get only something, so you need
$