Iam Populating Dropdown with employeeName using Classes It Displyaying ""with success populatio
Iam Populating Dropdown with employeeName using Classes It Displyaying ""with success population in run time in php webpage
Status:
Open Jul 17, 2007 - 06:06 AM
PHP, JavaScript
4answers
Answers
Aug 26, 2007 - 10:59 PM
i did nt get answer to my question
Sep 23, 2007 - 11:53 AM
It's difficult to find an answer to this question, since it's not quite clear what you want, or what PHP and JavaScript have to do with it.
If your webpage is really showing the glyphs "", it most likely is a problem of character encoding. Try selecting different kind of encodings from the View menu in your browser, to see which one makes it look like a recognised letter. To fix a problem of character encodings, we need to know much more about how the webpage is generated.
/Jakob
Dec 30, 2008 - 11:04 PM
Use this to populate you dropdown from database and use class name --------------
Select Company
$result=mysql_query("SELECT * FROM `company`") or die("Could not get data from the table".mysql_error());
if(mysql_num_rows($result) > 0)
{
while($row=mysql_fetch_array($result))
{
print(" ".$row['name']." \n");
}
}
?>
Mar 24, 2009 - 06:46 AM
The question looks to be abandoned by the user who asked it. If no action is taken within 2 days, a Quomon Moderator will consider closing the question and distributing the points.
The Quomon Team
Answer this question
Share Your Own Experience & Expertise
We look to ensure that every question is answered by the best people with relevant expertise and experience, the best answers include multiple perspectives. Do you have relevant expertise or experience to contribute your answer to any of these commonly asked questions?
Add New Comment