I have a code to insert into mysql database. Which is
schname is something like = St. Thame's College
$schname = $_GET['schname'];
$sql= "INSERT INTO `school` (id, schname, place) VALUES (' ', $schname, 'place',)";
But after the 's in $schname the query wont run. Can I get to know how to solve that, as all most all school names have 's after their name.