Im trying to put some information in my data base, I get the information from a text file, but i have the next problem, there is some words which i want to insert that have a simple apostrophe (') so how you know when u make an insert for string you need a couple of '' for each string, so when some word with a simple apostrophe comes in I got an error of syntax. For example:
Where $player = N'Zogbia
$resultado = mysql_query( "INSERT INTO equipo VALUES( '$nom_equipo', '$player' );" , $link );
How could I insert that kind of name without modify that simple apostrophe?