Hi There,
For some reason the following is not working - Inside the text field it displays nothing:
<?php
include 'dbc.php';
page_protect();
$rs_settings = mysql_query("select * from users where id='$_SESSION[id]'");
$row_settings = mysql_fetch_array($rs_settings);
?>
<html>
<head>
</head>
<body>
<form action="index.php" method="post" name="regForm" id="regForm" >
<input name="first_name" type="text" class="updateusersmall" id="first_name" value="<? echo $row_settings['first_name']; ?>" size="30" />
</body>
</html>