JankaZ Posted May 14, 2010 Share Posted May 14, 2010 How ken i make to script chect a song if its nat in db if its is than drop error song alredy exist! Albums=album dziesma=song izpilditajs=artis And i nide to check if posted song nat in db else post error song alredy posted. PLZZZ help. <?php $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("top", $con); $sql="INSERT INTO top (albums, izpilditajs, dziesma) VALUES ('$_POST[albums]','$_POST[izpilditajs]','$_POST[dziesma]')"; if (!mysql_query($sql,$con)) { die('Error: ' . mysql_error()); } echo "Paldies tava dziesma ir pievienota."; mysql_close($con) ?> Quote Link to comment https://forums.phpfreaks.com/topic/201790-check-if-its-not-in-db/ Share on other sites More sharing options...
Lamez Posted May 14, 2010 Share Posted May 14, 2010 You can do something like this $q = mysql_query("SELECT song FROM table WHERE artist = '$artist'"); if(mysql_num_rows($q) == 0){ echo "Song Exists"; } Quote Link to comment https://forums.phpfreaks.com/topic/201790-check-if-its-not-in-db/#findComment-1058476 Share on other sites More sharing options...
JankaZ Posted May 14, 2010 Author Share Posted May 14, 2010 Im nowbie here ken you fix my code and there nide else to i think dat! else echo song add tnx! Quote Link to comment https://forums.phpfreaks.com/topic/201790-check-if-its-not-in-db/#findComment-1058505 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.