NewcastleFan Posted July 30, 2012 Share Posted July 30, 2012 Hey guys, I've got a php form that works out an estimated cost and displays it on screen, while emailing me the email address and the data the user inputs. I want to be able to add conversion tracking to this from Google Adwords. At the moment when the user submit the form it uses an if isset to calculate the cost and then emails it and echo's it onto the users browser. How would I go about adding the javascript needed for the conversion tracking? As the page does not change it simply echos the data gathered. Thanks for any advice. Quote Link to comment https://forums.phpfreaks.com/topic/266447-php-google-conversion-tracking/ Share on other sites More sharing options...
ManiacDan Posted July 30, 2012 Share Posted July 30, 2012 As the page does not change it simply echos the data gathered.That means you're re-drawing the entire page. A form submission, as long as it's not interrupted with AJAX, re-loads the whole page. Put the conversion code alongside the output. Quote Link to comment https://forums.phpfreaks.com/topic/266447-php-google-conversion-tracking/#findComment-1365402 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.