you're on the right track.
// run your query. will only select phpE1 field
$query = mysql_query("SELECT phpE1 FROM your_table");
while($row = mysql_fetch_assoc($query)) { // fetch the records into an array
$phpE1 = $row["phpE1"]; // assing the db value from field to $phpE1
echo $phpE1 . "<br>"; // echo it
}
It comes out as a variable as it is; no need to assign a new variable name. Instead of doing
$phpE1 = $row["phpE1"];
you can just use
$row["phpE1"]
Cgraz