Jump to content

check if its not in db


JankaZ

Recommended Posts

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)
?> 

Link to comment
https://forums.phpfreaks.com/topic/201790-check-if-its-not-in-db/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.