Fruition's SEO, Social Media, and PPC Management Statistics
In the last 30 days we’ve generated the following leads, e-commerce sales, and organic search visits for our clients. Fruition is a numbers company. We like numbers that are increasing especially those that are related to revenue. We specialize in finding the keywords that convert and getting you the highest rankings possible for those keywords on Google, Bing!, and the other search engines. Contact us today to get more information on how you can improve your website’s search engine presence.
// enter your MySQL connection info below
$DBuser="leadfrui_drew";
$DBpassword="[&.a[bFc634u";
$DBdatabase="leadfrui_analytics";
mysql_connect(localhost,$DBuser,$DBpassword);
@mysql_select_db($DBdatabase) or die( "Unable to select database");
$query="SELECT COUNT(id) FROM WebsiteAnalytics WHERE date='$end' AND website='$key'";
$num=mysql_fetch_array(mysql_query($query));
if ($num[0] == 0) {
$query="SELECT SUM(totalVisits) AS totalVisits, SUM(transactionRevenue) AS transactionRevenue, SUM(completedGoals) AS completedGoals FROM WebsiteAnalytics";
$result=mysql_fetch_object(mysql_query($query));
$totalVisits = $result->totalVisits;
$revenue = $result->transactionRevenue;
$completedGoals = $result->completedGoals;
print ‘
30 Days Leads Generated: ‘ . number_format($completedGoals) . ‘
‘;
print ‘E-Commerce Sales: $’ . number_format($revenue,2) . ‘
‘;
print ‘Search Visits Directed: ‘ . number_format($totalVisits) . ‘
‘;
}
mysql_close();
?>






