That was indeed all of the code for the second query:
$Useq = mysql_query($row_Findq['Content'], $CollectionLocal) or die(mysql_error());
$row_Useq = mysql_fetch_assoc($Useq);
$totalRows_Useq = mysql_num_rows($Useq);
And I realize now that you solved my technical problem - the quotes.
The final problem (the lack of returned data) is one that I have to solve. I tried this instead; it collapses both queries into one, just to test:
mysql_select_db($database_CollectionLocal, $CollectionLocal);
$query_Dx = "SELECT * FROM WebPages WHERE Category='NavOption'";
$Dx = mysql_query($query_Dx, $CollectionLocal) or die(mysql_error());
$row_Dx = mysql_fetch_assoc($Dx);
And no data is returned, just as is the case with the second query. I do have a column in my WebPages table called "Category" and there are rows where "NavOption" is in that column. But this query returns no results, so there some as-yet undiscovered and unrelated issue involved. I think I can probably sort that out though.
Thank you very much for your help. The quotes in the data were the problem!