I am attempting following code to populate an UnOrdered List dynamically. The same type of code I am successfully using to populate a DropDown. But when I changed the tags to UnOrdered List, it is not working. When run, it just displays some tags instead of the actual output.Where is the error:\[code\]<?php require("dbconnection.php"); require("dbaccess.php"); $divName = $_GET['DivName']; $ulName = $_GET['ControlName']; $query = $_GET['SqlQuery'];echo $query;exit; dbconnection::OpenConnection(); $result = dbaccess::GetRows($query);?><ul id="<?php echo $ulName; ?>" name="<?php echo $ulName; ?>"><?php while($row=mysql_fetch_array($result)){ ?> <li><?php echo $row[1]; ?>"></li><?php } ?></ul>\[/code\]The code that I used to populate a DropDown is below: It works absolutely fine:\[code\]<?php require("dbconnection.php"); require("dbaccess.php"); $dropdownControlName = $_GET['DropDownControlName']; $query = $_GET['SqlQuery']; dbconnection::OpenConnection(); $result = dbaccess::GetRows($query);?><select id="<?php echo $dropdownControlName; ?>" name="<?php echo $dropdownControlName; ?>"><option>Select from the list</option><?php while($row=mysql_fetch_array($result)){ ?> <option value="http://stackoverflow.com/questions/2076583/<?php echo $row[0]; ?>"><?php echo $row[1]; ?></option><?php } ?></select>\[/code\]