Beginner in Shiny app.
should I use textInput to enter a website URL? how can I pass it into the server function to be manipulated in the program?
ui <- fluidPage(
textInput(inputId="txt", label="Enter Website", value ="http://...")
)
server <- function(input, output, session) {
print(input$txt)
#View(input$txt)
}
shinyApp(ui, server)