Hacer un select dinamico con posgrest
Buen dia
Quisiera saber como se hace para hacer un select en php con javascript y posgrest.
Normalmente yo los hago asi pero no estan coenctados a una BD
fecha=document.createElement('select');
fecha.name='cmd_fecha'+num;
fecha.id='cmd_fecha'+num;
fecha.onchange=function () {envio_valor(this)}
opt0=document.createElement('option');
opt0.Value='Seleccione Año'+num;
opt0.Name='Seleccione Año'+num;
opt0.appendChild(document.createTextNode('Seleccione Año'));
opt=document.createElement('option');
opt.Value='Actualmente Estudiando'+num;
opt.Name='Actualmente Estudiando'+num;
opt.appendChild(document.createTextNode('Actualmente Estudiando'));
opt1=document.createElement('option');
opt1.Value='1970'+num;
opt1.Name='1970'+num;
opt1.appendChild(document.createTextNode('1970'));
fecha.appendChild(opt0);
fecha.appendChild(opt);
fecha.appendChild(opt1);
fie.appendChild(fecha);
Quisiera saber como se hace este select pero con base de datos posgrest agradezco de antemano su colaboracion
Quisiera saber como se hace para hacer un select en php con javascript y posgrest.
Normalmente yo los hago asi pero no estan coenctados a una BD
fecha=document.createElement('select');
fecha.name='cmd_fecha'+num;
fecha.id='cmd_fecha'+num;
fecha.onchange=function () {envio_valor(this)}
opt0=document.createElement('option');
opt0.Value='Seleccione Año'+num;
opt0.Name='Seleccione Año'+num;
opt0.appendChild(document.createTextNode('Seleccione Año'));
opt=document.createElement('option');
opt.Value='Actualmente Estudiando'+num;
opt.Name='Actualmente Estudiando'+num;
opt.appendChild(document.createTextNode('Actualmente Estudiando'));
opt1=document.createElement('option');
opt1.Value='1970'+num;
opt1.Name='1970'+num;
opt1.appendChild(document.createTextNode('1970'));
fecha.appendChild(opt0);
fecha.appendChild(opt);
fecha.appendChild(opt1);
fie.appendChild(fecha);
Quisiera saber como se hace este select pero con base de datos posgrest agradezco de antemano su colaboracion