Skip to content

Commit

Permalink
axis turn graph
Browse files Browse the repository at this point in the history
  • Loading branch information
hugodemenez committed Feb 17, 2022
1 parent f6fd3b1 commit df932a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function database_to_chart(){
{
while ($row = mysqli_fetch_assoc($result))
{
$requete2 = "select * from data where portfolioName = '".$row['name']."'" ;
$requete2 = "select * from data where portfolioName = '".$row['name']."' order by date ASC" ;
$result2 = mysqli_query($database,$requete2);
$values = array();
$dates =array();
Expand Down

0 comments on commit df932a8

Please sign in to comment.