views:

37

answers:

1

I have a coupon request form on every page on my website, when the coupon form is submitted you are taken to the same page you are on with an additional "?coupon=sent" parameter added to the query string. I would like to be able to track any page url wiht ?coupon=sent on the end as a goal. Currently, I have this:

/[^.][.php][\?coupon\=sent]+

which does not seem to be doing the trick. Any ideas?

+2  A: 

Use this one:

/\?coupon=sent/
M42
Excellent, works like a charm! Thank you.
Yevgeniy Женя Van Chuchin
You're welcome.
M42