-2
In my code I have a save button for each option
that I made
and now I need, when saving, the name of the button to change.
How should I proceed?
código:
// aqui eu verifico o nome do botão
if(isset($dados) && ($dados['ecocodigocolecao2']!= '' || $dados['ecocodigocolecao1'] != '')){
$nomebotao == 'Alterar';
}else{
$nomebotao == 'Salvar';
}
<td>
<?php echo $db->monta_combo("ecocodigocolecao1", $adesao->listarLivros($disciplina['codigocomponente'],1,""), $podeeditar, "Selecione...", "", "", "", "500", "N", $padrao_id."_1", "", isset($dados)?trim($dados['ecocodigocolecao1']):'""',"","","onchange= \"buscarsegundaop(this.value,{$disciplina['codigocomponente']},{$disciplina['codigoetapa']})\"");?>
</td>
<td>
<?php echo $db->monta_combo("ecocodigocolecao2", $dados2, isset($dados)&& trim($dados['ecocodigocolecao2'])==""?"N":"{$podeeditar}", "Selecione...", "", "", "", "500", "N", $padrao_id."_2", "", isset($dados)?trim($dados['ecocodigocolecao2']):'""');?>
</td>
<td>
<input type="button" id="salvar" name="salvar"
<?php echo $podeeditar=="N"?'disabled="disabled"':''?> onclick="salvarcolecao(
<?php echo $disciplina['codigoetapa']?>,
<?php echo $disciplina['comid']?>,
<?php echo $row['adeid']?>,$(this));" value="$nomebotao"/>
</td>
I think the question will be for javascript/jquery and not php.
– Tiago Gomes
What does save collection function do? is that where you should change the name
– Tiago Gomes
@Tiagogomes makes an ajax request, and returns the success or failure message.
– Pablo Henrique Albernaz