File "edit_user.php"
Full Path: /home/analogde/www/Design/fileman/Fusion/task_management_system/edit_user.php
File size: 188 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
include 'db_connect.php';
$qry = $conn->query("SELECT * FROM users where id = ".$_GET['id'])->fetch_array();
foreach($qry as $k => $v){
$$k = $v;
}
include 'new_user.php';
?>