Suerte espero y te funcione ...
LiveMusic.html
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript"> google.load("jquery", "1.6.4");
$(function(){
$.getJSON('valores.php',function(data){
var html = "
<option value='' selected='selected'>LiveMusic
&& LiveCarito</option>"; for(var i = 0; i < data.length; i++){
html += "<option value='"+ (i+1) +"'>"+ data[i].live +"
</option>";
}
$("#LiveMusic").append($(html));
})
})
valores.php
Código PHP:
Ver original<?php
for($x=0; $x<=4; $x++){
$powerCarito[] = array("live" => "carito".($x+1)); }
?>