Greetings,
I have two tables named 'copyright' and 'logs'.
Table : copyright
Field : Copyr_md5
Table : logs
Field : md5checksum
Problem 1
Say i have a value stored in $md5check
in php , now i want to check if the value stored in $md5check
is found in field Copyr_md5
.If found , then display a message
Problem 2
I want to check if $md5check
is found in the field md5checksum
.If yes then i want to retrieve the data of 3 fields(say field1,field2,field3) in the row where value in $md5check
has been found.
I am a beginner in mysql and i am having trouble with these..
Thanks for helping me out