Giter Site home page Giter Site logo

Update record about core-php-admin-panel HOT 3 CLOSED

chetans9 avatar chetans9 commented on September 24, 2024
Update record

from core-php-admin-panel.

Comments (3)

chetans9 avatar chetans9 commented on September 24, 2024

make sure you have added query string parameters on links to update records e.g update.php?customer_id=61&operation=edit .

keep "name" attribute of input type same as database column name.

then use
$data_to_update = filter_input_array(INPUT_POST);
$db->where('id',$customer_id);
$db->update('customers', $data_to_update);

from core-php-admin-panel.

Zeroema avatar Zeroema commented on September 24, 2024

Hello Chetans9,

Thank you for your support and quick answer.

Done. I found the problem. I changed the value of "id" from a number to a Mac address but the FILTER_VALIDATE_INT was causing the problem.

Something new that I detected is that when you click on save button to save the changes in the MySQL table, in the php the changes goes back to the original.

e.g
edit store value
after click in save button

from core-php-admin-panel.

chetans9 avatar chetans9 commented on September 24, 2024

Ok. I got it. Thanks for pointing it out. After Updating/Inserting Redirect to same page and show a session flash message.

Like this :

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
   
    $data_to_update = filter_input_array(INPUT_POST);
    $db->where('id',$customer_id);
    $stat = $db->update('customers', $data_to_update);

    if($stat){
        $_SESSION['success'] = "Customer updated successfully!";
        header('location: customers.php'); //Redirect after successfull update
        exit();
    }
}

and whatever page you are redirecting Add something like this

if(isset($_SESSION['success'])) { echo '<div class="alert alert-success alert-dismissable"> <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <strong>Success! </strong>'. $_SESSION['success'].' </div>'; unset($_SESSION['success']); }

I was a newbie when I built this. I will fix it in later commits..

from core-php-admin-panel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.