यह जांचने का सबसे आसान तरीका है कि कोई पंक्ति मौजूद है या नहीं:
$lectureName = mysql_real_escape_string($lectureName); // SECURITY!
$result = mysql_query("SELECT 1 FROM preditors_assigned WHERE lecture_name='$lectureName' LIMIT 1");
if (mysql_fetch_row($result)) {
return 'Assigned';
} else {
return 'Available';
}
सरणियों और फ़ील्ड नामों के साथ खिलवाड़ करने की आवश्यकता नहीं है।