Jump to content

I have site running try to add something? But need help


undertai

Recommended Posts

I have this page I need to insert code into.  But I have tried ever thing ( include, include_once, insert directly into page )

 

<?php
include('mysql.php');

if ($image_path == "")
$image_path=str_replace("index.php?",NULL,$_SERVER['REQUEST_URI']);

if (strpos($image_path,'?'))
$image_path=str_replace("?",NULL,$image_path);

if (substr($image_path,strlen($image_path)-1,1) != "/")
$image_path=$image_path."/";

$Query="SELECT * FROM `Settings`";
$Result=mysql_query($Query) or die(MySQL_error());
if (mysql_num_rows($Result) >= 1)
{
while($aRow = mysql_fetch_object($Result))
{
	$Settings[$aRow->Name] = $aRow->Value;
}
}

//SEO
if (!isset($SEO_Title)){
$SEO_Title = $Settings['Website_Name']." | ".$Settings['Meta_Keywords'];
}
if (!isset($SEO_Description)){
$SEO_Description = $Settings['Meta_Description'];
}
if (!isset($SEO_Keywords)){
$SEO_Keywords = $Settings['Meta_Keywords'];
}
if (!isset($SEO_H1)){
$SEO_H1 = "Free Wallpapers from ".$Settings['Website_Name'];
}

//Featured wallpapers.
$result = mysql_query("SELECT * FROM `Wallpapers` ORDER BY `Hits` DESC LIMIT 0,4");
while ($row = mysql_fetch_assoc($result)) {
$a++;
$Popular_Wallpapers .= "\n".'<div class="Box">'."\n\t";
	$Popular_Wallpapers .= '<div style="font-size: 1em; margin-bottom: 5px;"><a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $row['Title']).'/">'.$row['Title']."</a></div>";
	$Popular_Wallpapers .= '<a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $row['Title']).'/"><img class="Thumbnail" src="'.$image_path.'images/wallpapers/'.$row['Thumbnail'].'" alt="'.$row['Title'].'" /></a>';
$Popular_Wallpapers .= '</div>';
}
if ($a==0) {
$Popular_Wallpapers=" ";
}

//Category navigation.
$result = mysql_query("SELECT * FROM `Categories` WHERE `parent` = '' ORDER BY `id` ASC");
while ($row = mysql_fetch_assoc($result)) {
$nName = str_replace(' ', "+",$row['name']);
$Category_Navigation .= '<a href="'.$image_path.'category/'.$nName.'/" class="NavigationLink">'.$row['name']."</a>";
if (isset($_SERVER['QUERY_STRING'])){
	$category = str_replace("Category=", "", str_replace("+", " ", $_SERVER['QUERY_STRING']));
$row3 = mysql_fetch_assoc(mysql_query("SELECT * FROM `Categories` WHERE `name` = '".$category."'"));
	if ($row['name'] == $category OR $row3['parent'] == $row['id']){
		if($row3['parent'] != ""){
			$result2 = mysql_query("SELECT * FROM `Categories` WHERE `parent` = ".$row3['parent']." ORDER BY `id` ASC");
			while ($row2 = mysql_fetch_assoc($result2)) {
				$nName = str_replace(' ', "+",$row2['name']);
				$Category_Navigation .= '<a href="'.$image_path.'category/'.$nName.'/" style="margin-left: 10px;" class="NavigationLink">'.$row2['name']."</a>";
			}
		} else {
			$result2 = mysql_query("SELECT * FROM `Categories` WHERE `parent` = (SELECT `id` FROM `Categories` WHERE `name` = '".$category."') ORDER BY `id` ASC");
			while ($row2 = mysql_fetch_assoc($result2)) {
				$nName = str_replace(' ', "+",$row2['name']);
				$Category_Navigation .= '<a href="'.$image_path.'category/'.$nName.'/" style="margin-left: 10px;" class="NavigationLink">'.$row2['name']."</a>";
			}
		}
	}
}
}

$pQuery="SELECT * FROM `Partners` ORDER BY `anchor`";
$pResult=mysql_query($pQuery) or die(mysql_error());
if (mysql_num_rows($pResult)>=1)
{
$Partners= '
			<div class="ContentHeader" style="margin-top: 5px;">
				Partners
			</div>
			<div class="ContentArea Partners">';
while ($pRow=mysql_fetch_object($pResult))
{
	$link=$pRow->link;
	$anchor=$pRow->anchor;
	$tlink='<a href="'.$link.'">'.$anchor.'</a>';
	$Partners .= '
				'.$tlink;
}
$Partners .= '
			</div>';
}

if ($Settings['Guest_Submit'] == '1') {
$Guest_Submit='<br /><div align="center" style="font-size:100%"><a href="'.$image_path.'submit/">Sumbit Your wallpaper collection to this website.</a></div><br />';
}

if ($Settings['Enable_Search'] == '1') {
	$sHTML .= '

			<div class="ContentArea Partners">
				<form action="'.$image_path.'search/" method="post" style="padding:0px; margin:0px;" margin="0">
				Please enter a search term.<br />
				<input type="text" name="search" style="width:95%; border:1px #0066FF solid;"><br />
				<div style="width:100%" align="left"><input type="submit" value="Submit" style="border:1px #0066FF solid; border-top:0px;"></div>
				</form>
			</div>';
}

//Featured Wallpaper
if ($Settings['Display_Featured'] == '2') {
$displayQuery = "SELECT * FROM `Wallpapers` ORDER BY RAND() LIMIT 1";
$displayResult = mysql_query($displayQuery) or die(mysql_error());
$row = mysql_fetch_assoc($displayResult);

$displayHTML .= '
			<span style="font-size:20%"> </span>
			<div class="ContentHeader">
				Random Wallpapers
			</div>
			<div class="ContentArea" style="text-align: center;">
';
$displayHTML .= "\n".'<div class="Box">'."\n\t";
$displayHTML .= '<div style="font-size: 1em; margin-bottom: 5px;"><a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $row['Title']).'/">'.$row['Title']."</a></div>";
$displayHTML .= '<a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $row['Title']).'/"><img class="Thumbnail" src="'.$image_path.'images/wallpapers/'.$row['Thumbnail'].'" alt="'.$row['Title'].'" /></a>';
$displayHTML .= '</div>';
$displayHTML .= '<div class="Clear"></div>
			</div>';
}

// Top 10 rated
if ($Settings['Enable_Rating'] == '1') {
$tfQuery="SELECT * FROM `Wallpapers` WHERE `total` != '0' ORDER BY `total` / `votes` DESC LIMIT 10";
$tfResult=mysql_query($tfQuery);
if (mysql_num_rows($tfResult) >= 1) {
	$tfHTML .= '
			<div class="ContentHeader" style="margin-top: 5px;">
				Top 10 Rated Wallpapers
			</div>
			<div class="ContentArea Partners">
	';
	while ($tRow=mysql_fetch_array($tfResult)) {
		$tRating=round($tRow['total']/$tRow['votes'],1);
		$tfHTML .= '<a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $tRow['Title']).'/">'.$tRow['Title'].' ('.$tRating.')</a>';
	}
	$tfHTML .= '
				</div>';
}
}

$header = '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>'.$SEO_Title.'</title>
<script src="http://www.sluiceway.com/mint/?js" type="text/javascript"></script>
<meta name="description" content="'.$SEO_Description.'" />
<meta name="keywords" content="'.$SEO_Keywords.'" />
<meta name="robots" content="follow,index" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script src="http://www.slingables.com/mint/?js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="'.$image_path.'styles.css" />
<script type="text/javascript">if (window!= window.top) top.location.href = location.href;</script>
</head>
<body>
<div class="Position">
	<div class="Header">
		<a href="'.$image_path.'"><img src="'.$image_path.'images/header.jpg" alt="'.$SEO_Title.'"/></a>
	</div>

		<div class="ContentLeft Left">
			<div class="ContentHeader">
				Slingables Categories
			</div>
			<div class="ContentArea">
				'.$Category_Navigation.'
			</div>
			'.$displayHTML.'
			'.$tfHTML.'
			'.$Partners.'
		</div>
		<div class="ContentMiddle Left">
			<div class="ContentHeader">
				<h1>'.$SEO_H1.'</h1>
			</div>
			<div class="ContentArea" style="padding: 10px;">
<!-- google_ad_section_start -->
';

$footer = '
<!-- google_ad_section_end -->
			</div>

		</div>
		<div class="ContentRight Left">
<div class="ContentHeader">
				Slingables Search
			</div>
<div class="ContentArea">
				'.$sHTML.' 
				</div>


			<div class="ContentHeader">
				Slingables Most Popular
			</div>
			'.$Popular_Wallpapers.'
		</div>
		<div class="Clear"></div>
	<!-- google_ad_section_end -->
</div>
<div class="Footer">© 2010 <a href="'.$Settings['Website_URL'].'">'.$Settings['Website_Name'].'</a></div>
<div style="font-size:11px; font-weight:0" align="center">Powered by <a href="http://www.webtrafficstats.com/" style="font-weight:bold;">Webtrafficstats</a> with around <script src="http://www.webtrafficstats.com/cgi-bin/getjs.cgi?id=yocousin&display=text&image=undefined&show=total"></script>  Visitors And Counting 
</div>';
include('stats.php');
'
</body>
</html>
';
?>

But need to add this into the script NEAR Visitors And Counting

<SCRIPT language="javascript"><!--
var tracker_loaded = 0;
//--></SCRIPT>
<SCRIPT language="javascript" SRC="http://webtrafficstats.co.cc/tracker.js">
</SCRIPT>
<SCRIPT language="javascript"><!--
if(tracker_loaded) {
document.writeln(make_stats_now('demo', 'http://webtrafficstats.co.cc/cgi-bin/x.fcgi'));
};
//--></SCRIPT>
<SCRIPT language="javascript"><!-- 
document.write("<"+"!--");
//--></SCRIPT>
<NOSCRIPT>
<A HREF="http://webtrafficstats.co.cc/cgi-bin/x.fcgi?NAVG=Linker&username=demo" target="_top"><IMG
SRC="http://webtrafficstats.co.cc/cgi-bin/x.fcgi?NAVG=Tracker&username=demo" BORDER=0></A>
</NOSCRIPT>
<SCRIPT language="javascript"><!--
document.write("--"+">");
//--></SCRIPT>

 

Link to comment
Share on other sites

how did you have the javascript stored in the include files?

since the js has both " and ', I would suggest ensuring that the intended include text is not closing the echo or variable by closing a quotation.

Heredoc will combat this problem (if it is infact the problem here)

http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

 

Something like this should work (or you could encase the variables content (the script) in quotations but you'd need to backslash the corresponding quotations in the script.

 

include file

$include = <<<EOD
<SCRIPT language="javascript"><!--
var tracker_loaded = 0;
//--></SCRIPT>
<SCRIPT language="javascript" SRC="http://webtrafficstats.co.cc/tracker.js">
</SCRIPT>
<SCRIPT language="javascript"><!--
if(tracker_loaded) {
document.writeln(make_stats_now('demo', 'http://webtrafficstats.co.cc/cgi-bin/x.fcgi'));
};
//--></SCRIPT>
<SCRIPT language="javascript"><!--
document.write("<"+"!--");
//--></SCRIPT>
<NOSCRIPT>
<A HREF="http://webtrafficstats.co.cc/cgi-bin/x.fcgi?NAVG=Linker&username=demo" target="_top"><IMG
SRC="http://webtrafficstats.co.cc/cgi-bin/x.fcgi?NAVG=Tracker&username=demo" BORDER=0></A>
</NOSCRIPT>
<SCRIPT language="javascript"><!--
document.write("--"+">");
//--></SCRIPT>
EOD;

 

Main File

<?php
include('mysql.php');

if ($image_path == "")
   $image_path=str_replace("index.php?",NULL,$_SERVER['REQUEST_URI']);

if (strpos($image_path,'?'))
   $image_path=str_replace("?",NULL,$image_path);

if (substr($image_path,strlen($image_path)-1,1) != "/")
   $image_path=$image_path."/";

$Query="SELECT * FROM `Settings`";
$Result=mysql_query($Query) or die(MySQL_error());
if (mysql_num_rows($Result) >= 1)
{
   while($aRow = mysql_fetch_object($Result))
   {
      $Settings[$aRow->Name] = $aRow->Value;
   }
}

//SEO
if (!isset($SEO_Title)){
   $SEO_Title = $Settings['Website_Name']." | ".$Settings['Meta_Keywords'];
}
if (!isset($SEO_Description)){
   $SEO_Description = $Settings['Meta_Description'];
}
if (!isset($SEO_Keywords)){
   $SEO_Keywords = $Settings['Meta_Keywords'];
}
if (!isset($SEO_H1)){
   $SEO_H1 = "Free Wallpapers from ".$Settings['Website_Name'];
}

//Featured wallpapers.
$result = mysql_query("SELECT * FROM `Wallpapers` ORDER BY `Hits` DESC LIMIT 0,4");
while ($row = mysql_fetch_assoc($result)) {
   $a++;
   $Popular_Wallpapers .= "\n".'<div class="Box">'."\n\t";
      $Popular_Wallpapers .= '<div style="font-size: 1em; margin-bottom: 5px;"><a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $row['Title']).'/">'.$row['Title']."</a></div>";
      $Popular_Wallpapers .= '<a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $row['Title']).'/"><img class="Thumbnail" src="'.$image_path.'images/wallpapers/'.$row['Thumbnail'].'" alt="'.$row['Title'].'" /></a>';
   $Popular_Wallpapers .= '</div>';
}
if ($a==0) {
   $Popular_Wallpapers=" ";
}

//Category navigation.
$result = mysql_query("SELECT * FROM `Categories` WHERE `parent` = '' ORDER BY `id` ASC");
while ($row = mysql_fetch_assoc($result)) {
   $nName = str_replace(' ', "+",$row['name']);
   $Category_Navigation .= '<a href="'.$image_path.'category/'.$nName.'/" class="NavigationLink">'.$row['name']."</a>";
   if (isset($_SERVER['QUERY_STRING'])){
      $category = str_replace("Category=", "", str_replace("+", " ", $_SERVER['QUERY_STRING']));
$row3 = mysql_fetch_assoc(mysql_query("SELECT * FROM `Categories` WHERE `name` = '".$category."'"));
      if ($row['name'] == $category OR $row3['parent'] == $row['id']){
         if($row3['parent'] != ""){
            $result2 = mysql_query("SELECT * FROM `Categories` WHERE `parent` = ".$row3['parent']." ORDER BY `id` ASC");
            while ($row2 = mysql_fetch_assoc($result2)) {
               $nName = str_replace(' ', "+",$row2['name']);
               $Category_Navigation .= '<a href="'.$image_path.'category/'.$nName.'/" style="margin-left: 10px;" class="NavigationLink">'.$row2['name']."</a>";
            }
         } else {
            $result2 = mysql_query("SELECT * FROM `Categories` WHERE `parent` = (SELECT `id` FROM `Categories` WHERE `name` = '".$category."') ORDER BY `id` ASC");
            while ($row2 = mysql_fetch_assoc($result2)) {
               $nName = str_replace(' ', "+",$row2['name']);
               $Category_Navigation .= '<a href="'.$image_path.'category/'.$nName.'/" style="margin-left: 10px;" class="NavigationLink">'.$row2['name']."</a>";
            }
         }
      }
   }
}

$pQuery="SELECT * FROM `Partners` ORDER BY `anchor`";
$pResult=mysql_query($pQuery) or die(mysql_error());
if (mysql_num_rows($pResult)>=1)
{
   $Partners= '
            <div class="ContentHeader" style="margin-top: 5px;">
               Partners
            </div>
            <div class="ContentArea Partners">';
   while ($pRow=mysql_fetch_object($pResult))
   {
      $link=$pRow->link;
      $anchor=$pRow->anchor;
      $tlink='<a href="'.$link.'">'.$anchor.'</a>';
      $Partners .= '
               '.$tlink;
   }
   $Partners .= '
            </div>';
}

if ($Settings['Guest_Submit'] == '1') {
   $Guest_Submit='<br /><div align="center" style="font-size:100%"><a href="'.$image_path.'submit/">Sumbit Your wallpaper collection to this website.</a></div><br />';
}

if ($Settings['Enable_Search'] == '1') {
      $sHTML .= '
            
            <div class="ContentArea Partners">
               <form action="'.$image_path.'search/" method="post" style="padding:0px; margin:0px;" margin="0">
               Please enter a search term.<br />
               <input type="text" name="search" style="width:95%; border:1px #0066FF solid;"><br />
               <div style="width:100%" align="left"><input type="submit" value="Submit" style="border:1px #0066FF solid; border-top:0px;"></div>
               </form>
            </div>';
}

//Featured Wallpaper
if ($Settings['Display_Featured'] == '2') {
   $displayQuery = "SELECT * FROM `Wallpapers` ORDER BY RAND() LIMIT 1";
   $displayResult = mysql_query($displayQuery) or die(mysql_error());
   $row = mysql_fetch_assoc($displayResult);

   $displayHTML .= '
            <span style="font-size:20%"> </span>
            <div class="ContentHeader">
               Random Wallpapers
            </div>
            <div class="ContentArea" style="text-align: center;">
';
   $displayHTML .= "\n".'<div class="Box">'."\n\t";
   $displayHTML .= '<div style="font-size: 1em; margin-bottom: 5px;"><a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $row['Title']).'/">'.$row['Title']."</a></div>";
   $displayHTML .= '<a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $row['Title']).'/"><img class="Thumbnail" src="'.$image_path.'images/wallpapers/'.$row['Thumbnail'].'" alt="'.$row['Title'].'" /></a>';
   $displayHTML .= '</div>';
   $displayHTML .= '<div class="Clear"></div>
            </div>';
}

// Top 10 rated
if ($Settings['Enable_Rating'] == '1') {
   $tfQuery="SELECT * FROM `Wallpapers` WHERE `total` != '0' ORDER BY `total` / `votes` DESC LIMIT 10";
   $tfResult=mysql_query($tfQuery);
   if (mysql_num_rows($tfResult) >= 1) {
      $tfHTML .= '
            <div class="ContentHeader" style="margin-top: 5px;">
               Top 10 Rated Wallpapers
            </div>
            <div class="ContentArea Partners">
      ';
      while ($tRow=mysql_fetch_array($tfResult)) {
         $tRating=round($tRow['total']/$tRow['votes'],1);
         $tfHTML .= '<a href="'.$image_path.'wallpaper/'.str_replace(" ", "-", $tRow['Title']).'/">'.$tRow['Title'].' ('.$tRating.')</a>';
      }
      $tfHTML .= '
               </div>';
   }
}

$header = '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>'.$SEO_Title.'</title>
<script src="http://www.sluiceway.com/mint/?js" type="text/javascript"></script>
<meta name="description" content="'.$SEO_Description.'" />
<meta name="keywords" content="'.$SEO_Keywords.'" />
<meta name="robots" content="follow,index" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script src="http://www.slingables.com/mint/?js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="'.$image_path.'styles.css" />
<script type="text/javascript">if (window!= window.top) top.location.href = location.href;</script>
</head>
<body>
   <div class="Position">
      <div class="Header">
         <a href="'.$image_path.'"><img src="'.$image_path.'images/header.jpg" alt="'.$SEO_Title.'"/></a>
      </div>
      
         <div class="ContentLeft Left">
            <div class="ContentHeader">
               Slingables Categories
            </div>
            <div class="ContentArea">
               '.$Category_Navigation.'
            </div>
            '.$displayHTML.'
            '.$tfHTML.'
            '.$Partners.'
         </div>
         <div class="ContentMiddle Left">
            <div class="ContentHeader">
               <h1>'.$SEO_H1.'</h1>
            </div>
            <div class="ContentArea" style="padding: 10px;">
<!-- google_ad_section_start -->
';

//INCLUDE FILE!
include('include.php');

$footer = '
<!-- google_ad_section_end -->
            </div>
            
         </div>
         <div class="ContentRight Left">
<div class="ContentHeader">
               Slingables Search
            </div>
<div class="ContentArea">
               '.$sHTML.' 
               </div>
               
            
            <div class="ContentHeader">
               Slingables Most Popular
            </div>
            '.$Popular_Wallpapers.'
         </div>
         <div class="Clear"></div>
      <!-- google_ad_section_end -->
   </div>
   <div class="Footer">© 2010 <a href="'.$Settings['Website_URL'].'">'.$Settings['Website_Name'].'</a></div>
   <div style="font-size:11px; font-weight:0" align="center">Powered by <a href="http://www.webtrafficstats.com/" style="font-weight:bold;">Webtrafficstats</a> with around <script src="http://www.webtrafficstats.com/cgi-bin/getjs.cgi?id=yocousin&display=text&image=undefined&show=total"></script>' . $include .'
</div>';
include('stats.php');
'
</body>
</html>
';
?>

 

 

Link to comment
Share on other sites

I had the java code in the include file almost like you have it except for the EOD <<<!

 

When I put the code in I get a couple of errors?  Go to the website and check it out.  http://slingables.com/

 

I figured out a couple of the problems but I get the stats tracker in the upper left corner of the page?  And when I check the page source code their is no </body></html> on the page.

<SCRIPT language="javascript"><!--
var tracker_loaded = 0;
//--></SCRIPT> 
<SCRIPT language="javascript" SRC="http://webtrafficstats.co.cc/tracker.js"> 
</SCRIPT> 
<SCRIPT language="javascript"><!--
if(tracker_loaded) {
document.writeln(make_stats_now('demo', 'http://webtrafficstats.co.cc/cgi-bin/x.fcgi'));
};
//--></SCRIPT> 
<SCRIPT language="javascript"><!--
document.write("<"+"!--");
//--></SCRIPT> 
<NOSCRIPT> 
<A HREF="http://webtrafficstats.co.cc/cgi-bin/x.fcgi?NAVG=Linker&username=demo" target="_top"><IMG 
SRC="http://webtrafficstats.co.cc/cgi-bin/x.fcgi?NAVG=Tracker&username=demo" BORDER=0></A> 
</NOSCRIPT> 
<SCRIPT language="javascript"><!--
document.write("--"+">");
//--></SCRIPT> 
<script type="text/javascript"> 
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script> 
</div> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<title>Slingable Wallpapers | wallpapers,Windows Wallpapers, desktop pictures,  apple desktops, linux wallpapers, mac wallpapers, desktop wallpaper</title> 
<script src="http://www.sluiceway.com/mint/?js" type="text/javascript"></script> 
<meta name="description" content="Slingables contains a large amount of Windows, Apple, and Linux desktop wallpapers." /> 
<meta name="keywords" content="wallpapers,Windows Wallpapers, desktop pictures,  apple desktops, linux wallpapers, mac wallpapers, desktop wallpaper" /> 
<meta name="robots" content="follow,index" /> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
<script src="http://www.slingables.com/mint/?js" type="text/javascript"></script> 
<link rel="stylesheet" type="text/css" href="/styles.css" /> 
<script type="text/javascript">if (window!= window.top) top.location.href = location.href;</script> 
</head> 
<body> 
   <div class="Position"> 
      <div class="Header"> 
         <a href="/"><img src="/images/header.jpg" alt="Slingable Wallpapers | wallpapers,Windows Wallpapers, desktop pictures,  apple desktops, linux wallpapers, mac wallpapers, desktop wallpaper"/></a> 
      </div> 
      
         <div class="ContentLeft Left"> 
            <div class="ContentHeader"> 
               Slingables Categories
            </div> 
            <div class="ContentArea"> 
               <a href="/category/Others/" class="NavigationLink">Others</a><a href="/category/Vehicles/" class="NavigationLink">Vehicles</a><a href="/category/Computers/" class="NavigationLink">Computers</a><a href="/category/Games/" class="NavigationLink">Games</a><a href="/category/Nature/" class="NavigationLink">Nature</a><a href="/category/Music/" class="NavigationLink">Music</a><a href="/category/People/" class="NavigationLink">People</a><a href="/category/Sports/" class="NavigationLink">Sports</a><a href="/category/Movies/" class="NavigationLink">Movies</a><a href="/category/Misc/" class="NavigationLink">Misc</a><a href="/category/Computer/" class="NavigationLink">Computer</a> 
            </div> 
            
            
            <div class="ContentHeader" style="margin-top: 5px;"> 
               Top 10 Rated Wallpapers
            </div> 
            <div class="ContentArea Partners"> 
      <a href="/wallpaper/Bloody-Keyboard/">Bloody Keyboard (5)</a><a href="/wallpaper/Angelina-Jolie-5/">Angelina Jolie 5 (5)</a><a href="/wallpaper/zhang-ziyi5/">zhang ziyi5 (5)</a><a href="/wallpaper/Fringe/">Fringe (5)</a><a href="/wallpaper/Jesikah_Maximus/">Jesikah_Maximus (5)</a><a href="/wallpaper/vanessa_veasley_2/">vanessa_veasley_2 (5)</a><a href="/wallpaper/Angelina_Jolie/">Angelina_Jolie (4.7)</a><a href="/wallpaper/Asheville-From-Space/">Asheville From Space (4.7)</a><a href="/wallpaper/Clownfish-At-Home/">Clownfish At Home (4.3)</a><a href="/wallpaper/Candy-Cane/">Candy Cane (4)</a> 
               </div> 
            
            <div class="ContentHeader" style="margin-top: 5px;"> 
               Partners
            </div> 
            <div class="ContentArea Partners"> 
               <a href="http://www.webtrafficstats.com">Webtrafficstats</a> 
            </div> 
         </div> 
         <div class="ContentMiddle Left"> 
            <div class="ContentHeader"> 
               <h1>Free Wallpapers from Slingable Wallpapers</h1> 
            </div> 
            <div class="ContentArea" style="padding: 10px;"> 
<!-- google_ad_section_start --> 
Our website contains a huge collection of wallpapers.  All wallpapers can by downloaded very quickly and are completely free. You can browse our wallpapers or upload your custom wallpapers you would like to share with the world.<br /><br /> 
<div align="center"> 
  <script type="text/javascript"><!--
google_ad_client = "pub-8069045275336383";
/* 468x60, created 9/17/09 */
google_ad_slot = "7597608185";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script> 
  <script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> 
</script><br /><br /> 
</div> 
<h2>Most Recent Wallpapers</h2> 

<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Windows-7a/">Windows 7a</a></div><a href="/wallpaper/Windows-7a/"><img class="Thumbnail" src="/images/wallpapers/Screenshot-711452.jpeg" alt="Windows 7a" /></a></div><div class="Spacer"> </div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/windows-seven/">windows seven</a></div><a href="/wallpaper/windows-seven/"><img class="Thumbnail" src="/images/wallpapers/windows seven wallpaper 16-653425.jpeg" alt="windows seven" /></a></div><div class="Spacer"> </div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Upset/">Upset</a></div><a href="/wallpaper/Upset/"><img class="Thumbnail" src="/images/wallpapers/upset-1280x800-523257.jpeg" alt="Upset" /></a></div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Inglorious-Bastards/">Inglorious Bastards</a></div><a href="/wallpaper/Inglorious-Bastards/"><img class="Thumbnail" src="/images/wallpapers/inglorious_bastards-1024x768-555287.jpeg" alt="Inglorious Bastards" /></a></div><div class="Spacer"> </div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Abstract-Planet/">Abstract Planet</a></div><a href="/wallpaper/Abstract-Planet/"><img class="Thumbnail" src="/images/wallpapers/abstract_planet-1024x768-816038.jpeg" alt="Abstract Planet" /></a></div><div class="Spacer"> </div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Waves-at-Night/">Waves at Night</a></div><a href="/wallpaper/Waves-at-Night/"><img class="Thumbnail" src="/images/wallpapers/sea_at_night-1024x768-700695.jpeg" alt="Waves at Night" /></a></div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Watery-Streets/">Watery Streets</a></div><a href="/wallpaper/Watery-Streets/"><img class="Thumbnail" src="/images/wallpapers/Watery_Streets-884271.jpeg" alt="Watery Streets" /></a></div><div class="Spacer"> </div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Taiwan-Beach/">Taiwan Beach</a></div><a href="/wallpaper/Taiwan-Beach/"><img class="Thumbnail" src="/images/wallpapers/What beautiful Taiwan is-827914.jpeg" alt="Taiwan Beach" /></a></div><div class="Spacer"> </div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Sexy-Beach/">Sexy Beach</a></div><a href="/wallpaper/Sexy-Beach/"><img class="Thumbnail" src="/images/wallpapers/Sexy_Beach-668483.jpeg" alt="Sexy Beach" /></a></div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/City-Streets/">City Streets</a></div><a href="/wallpaper/City-Streets/"><img class="Thumbnail" src="/images/wallpapers/City_Streets-375740.jpeg" alt="City Streets" /></a></div><div class="Spacer"> </div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Got-Milk/">Got Milk</a></div><a href="/wallpaper/Got-Milk/"><img class="Thumbnail" src="/images/wallpapers/got_milk-512182.jpeg" alt="Got Milk" /></a></div><div class="Spacer"> </div> 
<div class="Box Left"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Flowed-Bettle/">Flowed Bettle</a></div><a href="/wallpaper/Flowed-Bettle/"><img class="Thumbnail" src="/images/wallpapers/Flower_Bug-376641.jpeg" alt="Flowed Bettle" /></a></div><div class="Clear"></div><br /> 
<div style="text-align: center;"> 
<script type="text/javascript"><!--
google_ad_client = "pub-8069045275336383";
google_ad_width = 250;
google_ad_height = 250;
google_ad_format = "250x250_as";
google_ad_type = "text";
google_ad_channel = "desktop";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "cc0000";
google_color_text = "555555";
google_color_url = "555555";
//-->
</script> 
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> 

<script type="text/javascript"><!--
google_ad_client = "pub-8069045275336383";
google_ad_width = 250;
google_ad_height = 250;
google_ad_format = "250x250_as";
google_ad_type = "text";
google_ad_channel = "desktop";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "cc0000";
google_color_text = "555555";
google_color_url = "555555";
//-->
</script> 
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> 
</div> 
<br /> 

<!-- google_ad_section_end --> 
            </div> 
            
         </div> 
         <div class="ContentRight Left"> 
<div class="ContentHeader"> 
               Slingables Search
            </div> 
<div class="ContentArea"> 
               
            
            <div class="ContentArea Partners"> 
               <form action="/search/" method="post" style="padding:0px; margin:0px;" margin="0"> 
               Please enter a search term.<br /> 
               <input type="text" name="search" style="width:95%; border:1px #0066FF solid;"><br /> 
               <div style="width:100%" align="left"><input type="submit" value="Submit" style="border:1px #0066FF solid; border-top:0px;"></div> 
               </form> 
            </div> 
               </div> 
               
            
            <div class="ContentHeader"> 
               Slingables Most Popular
            </div> 
            
<div class="Box"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/pirate-flag/">pirate flag</a></div><a href="/wallpaper/pirate-flag/"><img class="Thumbnail" src="/images/wallpapers/997759pirate flag.jpg" alt="pirate flag" /></a></div> 
<div class="Box"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Fringe/">Fringe</a></div><a href="/wallpaper/Fringe/"><img class="Thumbnail" src="/images/wallpapers/906443Fringe.jpg" alt="Fringe" /></a></div> 
<div class="Box"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/bullet-joker/">bullet joker</a></div><a href="/wallpaper/bullet-joker/"><img class="Thumbnail" src="/images/wallpapers/449534bullet joker.jpg" alt="bullet joker" /></a></div> 
<div class="Box"> 
<div style="font-size: 1em; margin-bottom: 5px;"><a href="/wallpaper/Bloody-Keyboard/">Bloody Keyboard</a></div><a href="/wallpaper/Bloody-Keyboard/"><img class="Thumbnail" src="/images/wallpapers/4137151198323840487.jpg" alt="Bloody Keyboard" /></a></div> 
         </div> 
         <div class="Clear"></div> 
      <!-- google_ad_section_end --> 
   </div> 
   <div class="Footer">© 2010 <a href="http://www.slingables.com">Slingable Wallpapers</a></div> 
   <div style="font-size:11px; font-weight:0" align="center">Powered by <a href="http://www.webtrafficstats.com/" style="font-weight:bold;">Webtrafficstats</a> with around <script src="http://www.webtrafficstats.com/cgi-bin/getjs.cgi?id=yocousin&display=text&image=undefined&show=total"></script> 
</div>

 

 

 

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.