I would like to get the query string from the executing URL into my R. I've installed and configured R Apache. Everything works to this extend.
My R code so far is:
query_string <- Sys.getenv("QUERY_STRING")
cat("Content-Type: text/html\r\n\r\n")
cat("Die Anfrage-URL ist:", query_string)
I get no information from QUERY_STRING. Why? Any tipps and tricks?
My executing URL is http://localhost/R/query.R?query=hello
I would like to extract "hello".