Im working on a web application that can use uploaded csv file and generate graph based on them. (for graphs im using zingchart). Im having trouble with understanding how to use uploaded file.
this is function that i use for upload button
<form>
<div class = "uploaddat" >
<input type="file" name="file"/>
</div>
</form>
and this is where i need to put uploaded file
"csv":{
"url":"input/datasample.csv",
"smart-scales":true,
"vertical-labels":true
}
Im beginner, so i would really appreciate if somebody could help me
Thank you.