OK, first I'll post a part of the script I am writing:
Now my question is, would that show all the values of $row['field] minus the one that has the same value as $processor_no_display or would that just display nothing at all?
PHP:
include("./data/db_info.php");
mysql_connect($host, $user, $pass);
mysql_select_db($db);
$processor = mysql_query("SELECT * FROM processor WHERE processor.platform = '$platform' ORDER BY name ASC");
$processor_no_display= "blah blah blah"
while ($row = mysql_fetcharray($processor) && $row['field'] <> $processor_no_display)
{
echo $row['field'] \n;
}
Now my question is, would that show all the values of $row['field] minus the one that has the same value as $processor_no_display or would that just display nothing at all?