Forum Discussion
Bolaji_383919
Nimbostratus
Feb 16, 2019WEBSITE FORMS
HOW DO I GET DATA SUCH HAS NAME, PHONE NUMBER AND EMAIL SUBMITTED BY PEOPLE WHO VISIT MY WEBSITE
PeteWhite
Employee
Feb 21, 2019You can do that with an iRule:
when HTTP_REQUEST {
if { [HTTP::method] == POST } {
HTTP::collect
}
}
when HTTP_REQUEST_DATA {
set name [ URI::query [HTTP::payload] "name" ]
log local0. "Nname is $name"
}
Name in this case is the name of the form field so set that to be what you want.
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects
