Hi all,
I've got a problem with showing data in a textfield
The connection is made with the MySQL database.
This is the query:
$query = "SELECT * FROM uren WHERE id = $id";
$row = mysql_query($query);
And this is the textfield code :
<input type="Text" name="datum" size="30" value = "<? echo($row['datum']); ?>">
The problem is it also wont show the values in normal text like this
<? echo($row['datum']); ?>
Please help me
Tnx TanTrazz
I've got a problem with showing data in a textfield
The connection is made with the MySQL database.
This is the query:
$query = "SELECT * FROM uren WHERE id = $id";
$row = mysql_query($query);
And this is the textfield code :
<input type="Text" name="datum" size="30" value = "<? echo($row['datum']); ?>">
The problem is it also wont show the values in normal text like this
<? echo($row['datum']); ?>
Please help me
Tnx TanTrazz