Thread: Solution
View Single Post
Old Oct 30th, 2004, 11:02 PM   #2
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 5 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
I need to see your HTML code to make this work... but you'll need to fill a JS array with the PHP array info..

<script type="text/javascript">
var all = array(
<?php
  foreach($all as $col => $val)
    echo "  \"{$col}\" => \"{$val}\"\n";
?>
);
</script>
__________________

tempest is offline   Reply With Quote