Jump to content

How to Insert Google Analytics Event Tracking into Special PHP Coding


divaactor

Recommended Posts

How can I insert the following Google Event Tracking Code:

 

onclick="_gaq.push(['_trackEvent', 'Reservations', 'Image Click', 'Nightly Specials on Homepage']);"

 

Into the following PHP code for each day without running into trouble?

 

<?php

 

date_default_timezone_set('America/Los_Angeles');

 

$script_tz = date_default_timezone_get();

 

$today=date(l);

 

if($today==Monday) {

echo "<a href='http://goo.gl/UNm8d?lightbox[iframe]=true&lightbox[width]=800&lightbox[height]=470' onclick="_gaq.push(['_trackEvent', 'Reservations', 'Image Click', 'Easter']);" class='lightbox'><img src='wp-content/uploads/2013/02/Half-Price-Wine-Night.png'></a>";

}

 

elseif($today==Tuesday) {

echo "<a href='http://goo.gl/UNm8d?lightbox[iframe]=true&lightbox[width]=800&lightbox[height]=470' class='lightbox'><img src='wp-content/uploads/2013/02/Taco-Tuesday.png'></a>";

}

 

elseif($today==Wednesday) {

echo "<a href='http://goo.gl/UNm8d?lightbox[iframe]=true&lightbox[width]=800&lightbox[height]=470' class='lightbox'><img src='wp-content/uploads/2013/02/96-Steakhouse-Night.png'></a>";

}

 

elseif($today==Thursday) {

echo "<a href='http://goo.gl/UNm8d?lightbox[iframe]=true&lightbox[width]=800&lightbox[height]=470' class='lightbox'><img src='wp-content/uploads/2013/02/Fried-Chicken-Night.png'></a>";

}

 

elseif($today==Friday) {

echo "<a href='http://goo.gl/UNm8d?lightbox[iframe]=true&lightbox[width]=800&lightbox[height]=470' class='lightbox'><img src='wp-content/uploads/2013/02/Lobster-Shack.png'></a>";

}

 

elseif($today==Saturday) {

echo "<a href='http://goo.gl/UNm8d?lightbox[iframe]=true&lightbox[width]=800&lightbox[height]=470' class='lightbox'><img src='wp-content/uploads/2013/02/French-Bistro-Night.png'></a>";

}

 

elseif($today==Sunday) {

echo "<a href='http://goo.gl/UNm8d?lightbox[iframe]=true&lightbox[width]=800&lightbox[height]=470' class='lightbox'><img src='wp-content/uploads/2013/02/Turkey-Dinner-2.png'></a>";

}

 

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.