drranch Posted June 19, 2006 Share Posted June 19, 2006 I have a PHP drop down select list script that uses the default client side formatting but I would like to jazz up what my customer sees.I've seen many Java script menu builder applications out there, but I don't know that I can impart PHP to these scripts. can anyone help in giving me a small example of how to marry Java script with my PHP drop down select list script.Here is the PHP script...<?php$dogs = mysql_query("SELECT nick_name FROM dogs WHERE username='$uname'", $connection)or die(mysql_error());echo "<select dogs='nick_name'>";while ($row = mysql_fetch_array($dogs)){echo "<option> $row[nick_name]</option>";}echo "</select>";?> Quote Link to comment https://forums.phpfreaks.com/topic/12381-can-you-insert-php-script-to-java-sript/ Share on other sites More sharing options...
.josh Posted June 20, 2006 Share Posted June 20, 2006 you could pass the option values as an array from php to js and then let js build the dropdown instead of php.example:[code]<?php $x = 'blah';?><script language = 'javascript'>var x = <?= $x ?></script>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/12381-can-you-insert-php-script-to-java-sript/#findComment-47732 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.