divaactor Posted March 28, 2013 Share Posted March 28, 2013 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>"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/276252-how-to-insert-google-analytics-event-tracking-into-special-php-coding/ Share on other sites More sharing options...
trq Posted March 28, 2013 Share Posted March 28, 2013 See: http://php.net/manual/en/language.operators.string.php That code already has issues as well unless you have defined the days of the week as constants. Quote Link to comment https://forums.phpfreaks.com/topic/276252-how-to-insert-google-analytics-event-tracking-into-special-php-coding/#findComment-1421561 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.