Does anyone know how to use php with flash? If not don't answer.Thanks!?

  • Thread starter Thread starter jeni b
  • Start date Start date
J

jeni b

Guest
Hi there, we need help. This is what we are needing. We have a site that we need to track the links. We have a bunch of client ads on our site and each of these ads need to be linked. However, I made these ads in Flash cs3/cs4. They are moving ads, they rotate. They each of links attached to them so you can click on the ad and go to the client's website. So our webtech guys are using a php system to track these links. How do we get the ads trackable by using the php method if they are made in flash? We have tried and tried to figure this out, but we have no clue. Any suggestions would be awesome, ok thank you!!
 
You can track links that lead off of your site by adding code that executes when users click on the link. If your site uses dynamic PHP code, you can track outbound links using the following code:

<?php
$site_client = "/outbound/sample1";
$site_link = "http://www.example.com";

echo " <a href=" . $site_link . " onClick=\"javascript:urchinTracker('/outgoing/" . $site_client . "');\">example</a>";
?>


Simply define the site_client variable to store whatever page you'd like the outbound link to show up as in the Top Content report and the site_link variable to store the hyperlink that should be followed when a user clicks the link.

Hope this helps...
 
You can track links that lead off of your site by adding code that executes when users click on the link. If your site uses dynamic PHP code, you can track outbound links using the following code:

<?php
$site_client = "/outbound/sample1";
$site_link = "http://www.example.com";

echo " <a href=" . $site_link . " onClick=\"javascript:urchinTracker('/outgoing/" . $site_client . "');\">example</a>";
?>


Simply define the site_client variable to store whatever page you'd like the outbound link to show up as in the Top Content report and the site_link variable to store the hyperlink that should be followed when a user clicks the link.

Hope this helps...
 
You can track links that lead off of your site by adding code that executes when users click on the link. If your site uses dynamic PHP code, you can track outbound links using the following code:

<?php
$site_client = "/outbound/sample1";
$site_link = "http://www.example.com";

echo " <a href=" . $site_link . " onClick=\"javascript:urchinTracker('/outgoing/" . $site_client . "');\">example</a>";
?>


Simply define the site_client variable to store whatever page you'd like the outbound link to show up as in the Top Content report and the site_link variable to store the hyperlink that should be followed when a user clicks the link.

Hope this helps...
 
Back
Top