我把美元放在每个价格(数字)之前
$Product_Price="USD".mysql_real_escape_string($_POST['product_price']);
现在我将其验证为
if(!is_numeric($Product_Price))
{
$Errormessage[]="Price must be in numbers";
}
它运行 if 语句。我如何才能以每个价格获得美元,但对于用户来说,应该限制他只能添加数字。