Jump to content

can you insert PHP script to Java sript


drranch

Recommended Posts

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>";
?>
Link to comment
https://forums.phpfreaks.com/topic/12381-can-you-insert-php-script-to-java-sript/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.