Sublime text 2.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
int unosDerecha(int x, int y) {
int contador = 0
for (int i = y; i < matriz[0].length; i++) {
if ( matriz[x][i] == 1 ) {
contador++;
}
}
return contador;
}
foreach($preguntas as $pregunta) {
$this->pregunta->insertPregunta($pregunta);
}
public function insertPregunta($pregunta) {
$insert = $this->bdd->prepare("INSERT INTO tpreguntas (Los campos están bien puestos) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)");
$insert->execute($pregunta);
}
<input type="button" onClick="funcion(document.getElementById('ID').value)">
<button type="button" onClick="funcion(document.getElementById('ID').value)">TextoDelBoton</button>