i'm really new to r and i need help with my project.
so the concept is i want to integrate R with html+php using iframe. but i want to store the result from calculation using R like the graph, the spectrogram, etc into a file that's going to be stored into a mysql database. is there anyway to do this? i would highly appreciate and thankful for all of the help.
Like @pieterjanvc said, connecting to MySQL from R straight-forward.
The only issue is usually drivers and that's OS dependent.
I'm more curious how you connect PHP with R.
In PHP, you can execute a shell command which would just be Rscript your_script.R
Not sure if this takes care of all the complexities you are trying to build for.