mistertrader Posted August 23, 2011 Posted August 23, 2011 Whenever I was clicking on "add to cart" on my site I was getting this error : "Deprecated: Function ereg() is deprecated in /home/moiz/public_html/osc/includes/functions/general.php on line 1094" so I changed the "ereg" to preg_match and now I am getting this error Warning: preg_match() [function.preg-match]: No ending delimiter '^' found in /home/moiz/public_html/osc/includes/functions/general.php on line 1094 Heres the code: } if ($type == 'mixed') { if (eregi('^[a-z0-9]$', $char)) $rand_value .= $char; } elseif ($type == 'chars') { if (eregi('^[a-z]$', $char)) $rand_value .= $char; } elseif ($type == 'digits') { line 1094 if (preg_match('^[0-9]$', $char)) $rand_value .= $char; } } Can anyone please help me resolve this issue? Thanks :).
♥kymation Posted August 23, 2011 Posted August 23, 2011 if (preg_match('{^[0-9]$}', $char)) $rand_value .= $char; Regards Jim See my profile for a list of my addons and ways to get support.
mistertrader Posted August 24, 2011 Author Posted August 24, 2011 if (preg_match('{^[0-9]$}', $char)) $rand_value .= $char; Regards Jim Thank-you for you're help Jim! It worked! :)!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.