Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Error


mistertrader

Recommended Posts

Posted

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 :).

Posted

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...