tenhos um sistema de cadastro em php.
so que estou incluindo no sistema uma pagina de consulta e atualiza
estamos usando no script php:
<?php
include("verifica.php");
include("configuracao.php");
$db = mysql_connect ($host, $login_db, $senha_db);
$basedados = mysql_select_db($database);
$usuario = mysql_query("SELECT * FROM radreply WHERE UserName='$UserName''") or print (mysql_error());
while($linha = mysql_fetch_array($usuario)){
$UserNamebanco = $linha["UserName"];
$Attributebanco = $linha["Attribute"];
$opbanco = $linha["op"];
$Valuebanco = $linha["Value"];
}
?>
<?php
switch ($acao){
case mod:
$db = mysql_connect ($host, $login_db, $senha_db);
$basedados = mysql_select_db($database);
$modificar = mysql_query("UPDATE radreply SET UserName='$UserName', Attribute='$Attribute', op='$op', Value='$Value' WHERE
UserName='$UserName'") or print (mysql_error());
print"
<META HTTP-EQUIV=REFRESH CONTENT='0; URL=area_vip2.php'>
<script type=\"text/javascript\">
alert(\"Atenção: Seus dados foram atualizados com sucesso. Aguarde enquanto você é redirecionado para sua area VIP!\");
</script>
";
}
?>
<html>
<head>
<title>Documento sem título</title>
</head>
<body>
<div align="center">
<form action="?acao=mod" method="post" name="cadastro" id="cadastro" onSubmit="return valida();">
<table width="522" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="20" colspan="2"><p align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong>DADOS
DO SISTEMA</Strong><br>
</font></p>
</td>
</tr>
<tr>
<td width="145" height="20"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Nome
completo:<font color="#FF0000">*</font></font></td>
<td width="377" height="20"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
<input name="UserName" type="text" id="UserName2" value="<?php echo $UserNamebanco ?>" size="20" maxlength="40">
(max. 40 digitos) </font></td>
</tr>
<tr>
<td height="20"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Attribute do login:<font color="#FF0000">*</fon
t></font></td>
<td height="20"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
<input name="Attribute" type="text" id="Attribute" value="<?php echo $Attributebanco ?>" size="20" maxlength="16">
(max. 16 digitos) </font></td>
</tr>
<tr>
<td height="20"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Operacao:<font color="#FF0000">*</font></font><
/td>
<td height="20"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
<input name="op" type="text" id="op" value="<?php echo $opbanco ?>" size="20" maxlength="2">
(max. 2 digitos) </font></td>
<tr>
<td height="20"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">IP:</font></td>
<td height="20"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
<input name="Value" type="text" id="Value" value="<?php echo $Valuebanco ?>" size="20" maxlength="15">
(max. 15 digitos) </font></td>
</tr>
<td height="20"> </td>
<td height="20"><input type="submit" name="Submit" value="Atualizar dados">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>
+----+----------+-------------------------------+------+-------------------+
| id | UserName | Attribute | op | Value |
+----+----------+-------------------------------+------+-------------------+
| 14 | soares | Framed-IP-Adress | = | 10.100.124.2 |
| 15 | soares | reply-message | = | download 160 |
| 17 | soares | reply-message | = | upload 160 |
| 18 | soares | Framed-IP-Netmask | = | 255.255.255.252 |
mais na pagina php so mostra a ultima,
eu queria poder pegar uma por uma ou as 4 desse usuario e poder atualiza.