J
|
Jane 1/9/2008 |
Hi, <INPUT name=username {$value_username}> and replace it with this one: {doevent name="TableName_username"}
global $conn; $strSQL = "select Username from users"; $rs = db_query($strSQL,$conn); $str = ""; $str.="<select name=username>"; while ($data = db_fetch_array($rs)) $str.="<option value=".$data["Username"].">".$data["Username"]."</option>"; $str.="</select>"; echo $str; |
V
|
voicemagic author 1/21/2008 |
Hi, you can do it editing your pages manually on the Visual Editor tab. Switch to HTML mode, find this code: and replace it with this one: Then edit your TableName_username event. Here is a sample code:
|
J
|
Jane 1/22/2008 |
Hi, |
V
|
voicemagic author 1/22/2008 |
Hi, add this code to your custom event on the Login page (yellow rectangle with TableName_username).
|