Is it possible?
I have a column on the left of my screen listing the company name and type of company. I would like the viewer to be able to choose to view the companies alphabetically by NAME or by TYPE.
Here is how the list appears by NAME:
Here is the page I'm trying to develop:
The script I've written looks like:
I can't seem to get it work... any suggestions?
I have a column on the left of my screen listing the company name and type of company. I would like the viewer to be able to choose to view the companies alphabetically by NAME or by TYPE.
Here is how the list appears by NAME:
Here is the page I'm trying to develop:
The script I've written looks like:
Code:
<script type="text/javascript">
function do_click( name )
{
<?php
include ('memberlistname.php');
?>);
}
function do_click( type )
{
<?php
include ('memberlisttype.php');
?>
}
</script>
....
<input type="button" value="Name" onclick="do_click( name )"/>
<input type="button" value="Type" onclick="do_click( type )"/>
I can't seem to get it work... any suggestions?