Is it possible to call a php function from an javascript event such as:
onmousedown="do stuff"
I have tried to use the following:
<?php
echo"<select name=\"xyz\" onchange=\"";
create_names($company_id);
echo"\">";
?>
which doesn't work...I have also tried other variations.
Please help!!
marvin