$sql = "INSERT INTO toplist (serverName, serverPassword, serverIp, serverPort, serverBanner, serverShortDescription, serverDescription) VALUES ('$_POST[serverName]', '$_POST[serverPassword]', '$_POST[serverIp]', '$_POST[serverPort]', '$_POST[serverBanner]', '$_POST[serverShortDescription]', '$_POST[serverDescription]')"; if (!mysql_query($sql, $con)) { die('Error: ' . mysql_error()); } echo "The server " . $_POST[serverName] . "," . $_POST[serverIp] . " has been added."; mysql_close($con);
How can I make it so that if the entry "serverIp" does not exist yet, it will add it to the database, if it already exists, then it does nothing. Also, will it also be case sensitive? Can you get around it without any restrictions?
source share