0

Manipulando arquivo xml com simplexml - CRUD

criado por Douglas Tybel em 05/07/2013 8:50am
Após obter as variáveis, o arquivo editar.htm é incluído para mostrar em campos todas as informações obtidas com as opções de CRUD.

Arquivo: editar.htm

<html>

<head>
<meta http-equiv="Content-Language" content="pt-br">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Usuário</title>
<script language="javascript">
function mudaAction(pagina){
document.forms[0].action=pagina;
document.forms[0].submit();
}
</script>
</head>

<body>

<form method="POST" name="form" action="">
	<table border="2" width="23%" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
		<tr>
			<td width="105"><font face="Arial" size="2">Usuário:</font></td>
			<td>
			<input type="text" name="name" size="36" value="<?php print $name; ?>"></td>
		</tr>
		<tr>
			<td width="105"><font face="Arial" size="2">Senha:</font></td>
			<td>
			<input type="text" name="password" size="36" value="<?php  print $password; ?>"></td>
		</tr>
		<tr>
			<td width="105"><font face="Arial" size="2">Profiles:</font></td>
			<td>
			<input type="text" name="profiles" size="36" value="<?php  print $profiles; ?>"></td>
		</tr>
		<tr>
			<td width="105"><font face="Arial" size="2">Max-Conections:</font></td>
			<td>
			<input type="text" name="maxconnections" size="36" value="<?php  print $maxconnections; ?>"></td>
		</tr>
	</table>
	<p>&nbsp;</p>
	<p>
	<input type="button" value="Lista todos" name="B6" onClick="mudaAction('proxy.php')">
	<input type="button" value="Novo" name="B5" onClick="mudaAction('novo.php')">
	<input type="button" value="Inserir" name="B1" onClick="mudaAction('inserir.php')">
	<input type="button" value="Alterar" name="B3" onClick="mudaAction('editar.php')">
	<input type="button" value="Excluir" name="B4" onClick="mudaAction('delete.php')">
	</p>
</form>

</body>

</html>

No htm tem uma função em java script chamada: mudaAction que é responsável por direcionar o action do formulário para as funções CRUD que serão listadas mais a frente.

Comentários:

Nenhum comentário foi enviado ainda.

Novo Comentário:

(Você pode usar tags como <b>, <i> ou <code>. URLs serão convertidas para links automaticamente.)