Well I have found some poll scripts and I have a drop-down menu script in Java. But I have no idea how to put it in a poll script made for PHP
I don't even know what to look for in the poll script, I mean what does those buttons look like in code, that I want to change to drop-down menu ?
see my site
www.snowflake.dk
I would like a poll script just like this one, only I would have the script on my site and not as a web service.
Drop-down Menu
<html>
<head>
<title>Select and Go</title>
<script language="JavaScript">
<!--
function openDir(form) {
window.location =(form.dir.options[form.dir.selected Index].value);
}
// -->
</script>
</head>
<body>
<form name="myform">
<div align="center"><p><select name="dir" size="1">
<option value="">Choose a Site</option>
<option value="http://www.yahoo.com/">Yahoo!
<option value="http://www.excite.com/">Excite
</select><input type="button" name="button" value="Go!" onclick="openDir(this.form);"></p>
</div>
</form>