sql >> Databasteknik >  >> RDS >> Mysql

hur man tillåter användare som är inloggade att UPPDATERA/REDIGERA sina profilinställningar/information

kort version;)

HTML fil:

<form action="./change.php" method="post"> 
    Nickname: <input type="text" name="nickname"><br />
    Country: <input type="text" name="country"><br />
    Date of birth: <input type="text" name="date_of_birth"><br />
    Gender: <input type="text" name="gender"><br />
    Motto: <input type="text" name="motto"><br />
    Bio: <input type="text" name="bio"><br />
    <input type="submit" value="Submit">
</form>

change.php:

<?php
    function filter($date)
    {
        return trim(htmlspecialchars($date));
    }

    $nickname = filter($_POST['nickname'])
    $country = filter($_POST['country'])
    $date_of_birth = filter($_POST['date_of_birth'])
    $gender = filter($_POST['gender'])
    $motto = filter($_POST['motto'])
    $bio = filter($_POST['bio'])

    if (isUserLogIn)
    {
        //SQL update query
    }

?>



  1. hur implementerar man sökning efter 2 olika tabelldata?

  2. Använda Trace Flag 3226 för att undertrycka loggning av säkerhetskopiering

  3. PHP hur man sparar HTML-sträng i databasen

  4. CentOs Php och MySql-konfiguration