I once again got a simple MySQL connection, and now I want to do this:
Load up all data in the field Game, BUT, the letter field must be equal to $letter. Theres possibly one or more records of the same game in the Game field. So, It will only show it once, instead of multiple times...understand that ok? If so, can you help me out please?
-Neo
Help please?
Moderator: General Moderators
-
penguinboy
- Forum Contributor
- Posts: 171
- Joined: Thu Nov 07, 2002 11:25 am
hmm?
?
Code: Select all
<?php
$sql = "SELECT * FROM table_name WHERE letter='$letter'";
?>