I think you've got your links back-to-front
<a href='manual2_en.php?=scc'>
This won't create $GET['scc'] nor put a value into it. From the other link in that code, and from your table, I'm going to guess that you meant scc to be the field name.
<a href='manual2_en.php?field=scc'>
and then
if(empty($_GET['field']))
{
header("Location: manual_en.php");
exit();
}
$field = $_GET['field'];
if(!in_array($field, 'preamble', 'scc', 'etc'))
{
header("Location: manual_en.php");
exit();
}
$query = "Select $field from manual";
Now, that probably won't do what you want, though. Unless you really do want to select all preambles from the manual table, or all sccs from the manual table, or....
Do you really want to select an entire column (a certain field from every record), or are you actually after a single record?