Any idea what Deprecated: Function split() is deprecated in means
im getting error
Deprecated: Function split() is deprecated in
in this code
<?php
$fcontents = join ('', file ($_SERVER['DOCUMENT_ROOT'] . '/banners/banners_468_60.txt'));
$s_con = split("~",$fcontents);
$banner_no = rand(0,(count($s_con)-1));
echo $s_con[$banner_no];
?>
|