Hallo Tobias
Danke schon mal!
Nun, hier mal meinen Code teil, welcher das Textfeld "zusammenbaut":
Hierbei kommt $fieldData direkt aus der DB...
function getMyDesign($fieldName,$fieldData,$function)
{
if($function!="edit") echo $fieldData;
else
{
echo "<input type=text name='$fieldName' ";
echo "style='font-family:Verdana;font-size:8pt;background-color:#ffffff;border-style:solid;border-width:1px;height:18px;width:180px'";
echo " value='$fieldData'>";
}
}
Grüsse aus Zürich