Add a lines array for provisioning.
This commit is contained in:
parent
b0c0cbbd92
commit
a75cc0fccd
|
|
@ -349,6 +349,9 @@ include "root.php";
|
|||
$prep_statement->execute();
|
||||
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
||||
$result_count = count($result);
|
||||
//assign the keys array
|
||||
$view->assign("lines", $result);
|
||||
//set the variables
|
||||
foreach($result as $row) {
|
||||
//set the variables
|
||||
$line_number = $row['line_number'];
|
||||
|
|
|
|||
Loading…
Reference in New Issue