- Home
- Categorie
- Coding e Sistemistica
- PHP
- problema switch
-
problema switch
ciao ragazzi xche non mi entra nel case: modifica? non mi mdofica i dati
<?php //Includo i file per la connessione //e per la verifica Utente require_once('connessione.php'); require_once('verificalogin.php'); ?> <html> <head> </head> <body> <p align="center"><strong>MODIFICA I DATI DEL TUO CONTATTO </strong></p> <p> <?php if(IsSet($_SESSION['utenteM'])){ //echo "<p>Benvenuto tutorutente: ".@$_SESSION['utenteM'][0]; }else { echo "errore"; } $user=$_SESSION['utenteM'][0]; $idutente = $_REQUEST[idutente]; echo $idutente; switch ($_REQUEST['action']) { case "modifica": $idlista = $_REQUEST[idlista]; echo $idlista; $nome = $_POST['nome']; $cognome = $_POST['cognome']; $cognome = $_POST['cellulare']; $query = "UPDATE utente SET nome='$nome',cognome='$cognome', cellulare='$cellulare' WHERE idutente='$idutente'"; mysql_query($query) or die("Errore nella query1:".mysql_error()); echo'<SCRIPT LANGUAGE="JavaScript">location="http://localhost/componente/formcontatti.php?idlista='.$idlista.'";</script>'; break; default: $query = "SELECT * FROM utente WHERE idutente = '$idutente'"; $result1 = mysql_query($query) or die("Errore nella query:".mysql_error()); $riga = mysql_fetch_array($result1); $nome = $riga['nome']; $cognome = $riga['cognome']; $cellulare = $riga['cellulare']; echo ' <FORM NAME="" action="modificacontatto.php" method="post" > <div align="center"> <table width="540" height="152" border="0" bordercolor="#99CC33"> <input name="action" type="hidden" value='.modifica.'> <tr> <td width="75" height="35">nome</td> <td width="155"><input type="text" name="nome" value='.$nome.'></td> <td><p> </p> </td> </tr> <tr> <td height="33">Cognome:</td> <td colspan="2"><input type="text" name="cognome" value='.$cognome.'></td> </tr> <tr> <td height="33">Cellulare</td> <td colspan="2"><input name="cellulare" type="text" size="30" value='.$cellulare.'> </td> </tr> <td height="76" colspan="2" align="center"><input type="submit" value="Invia"></td> </tr> </table> </div> </form>'; break; } ?> </p> <p> </p> </body> </html>
-
Linea 27 $_REQUEST[idutente] invece $_REQUEST['idutente']
Linea 36 stesso errore, non so se sia quella il motivo, comunque prova!
-
ciao spaccioman grazie mille.*
*