I'm using PHP and Mysql and I'm trying to add a NEXTEL and CLARO type radio ID field:
23*4567
But when I check what has been inserted, I see that it only registered what is before *, thus:
23
Using a normal query like this:
INSERT INTO tabela (id_radio) VALUES ("23*4567")
I've tried using the functions, but nothing worked.
addslashes()
mysql_real_scape_string()
Is there a function required for * to be accepted by mysql?