<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Shaun's World</title>
	<atom:link href="http://www.shaungill.co.uk/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.shaungill.co.uk</link>
	<description>From Geek to Uber Geek...</description>
	<pubDate>Thu, 01 Apr 2010 08:54:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google April Fools 2010</title>
		<link>http://www.shaungill.co.uk/?p=49</link>
		<comments>http://www.shaungill.co.uk/?p=49#comments</comments>
		<pubDate>Thu, 01 Apr 2010 08:51:32 +0000</pubDate>
		<dc:creator>HughUlmer60</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=49</guid>
		<description><![CDATA[


Looks like Google are at it again with another April Fools prank; do a search (any search) and take a look at the where it should say how long the search took to complete, in this case &#8220;2.00 shakes of a lambs tail&#8221;

]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin: 12px;"><script type="text/javascript"><!--
google_ad_client = "pub-1213643583738263";
google_ad_slot = "8050392339";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><p>Looks like Google are at it again with another April Fools prank; do a search (any search) and take a look at the where it should say how long the search took to complete, in this case &#8220;2.00 shakes of a lambs tail&#8221;</p>
<div id="attachment_50" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-50" title="googlefool" src="http://www.shaungill.co.uk/wp-content/uploads/2010/04/googlefool-300x187.jpg" alt="Google April Fool 2010" width="300" height="187" /><p class="wp-caption-text">Google April Fool 2010</p></div>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=49</wfw:commentRss>
		</item>
		<item>
		<title>Adult URL Shortener</title>
		<link>http://www.shaungill.co.uk/?p=46</link>
		<comments>http://www.shaungill.co.uk/?p=46#comments</comments>
		<pubDate>Sun, 24 Jan 2010 23:36:23 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=46</guid>
		<description><![CDATA[


Well, I have to admit I&#8217;ve not really been on form in updating this blog! On the plus side, the reason is because I&#8217;ve been locked in a cave learning to code in PHP. I&#8217;ve been playing around with bit.ly lately and noticed in their Terms of Service that you can&#8217;t use it for porn [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I have to admit I&#8217;ve not really been on form in updating this blog! On the plus side, the reason is because I&#8217;ve been locked in a cave learning to code in PHP. I&#8217;ve been playing around with bit.ly lately and noticed in their Terms of Service that you can&#8217;t use it for porn links. Had a quick look around on Google and can&#8217;t seem to find anyone else who does, so I thought &#8217;sod it&#8217; and gave it a go myself - can&#8217;t be that hard <img src='http://www.shaungill.co.uk/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Anyway, after a solid day coding and mashing up the HTML, here is the finished product - <a title="porn url shortener" href="http://pyr.nu" target="_blank">http://pyr.nu</a>. Who knows, it might take off! Anyway, if I start to get traffic to the site and there is frequent use I&#8217;ll add a &#8216;Pro Members&#8217; so they can track their links too</p>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=46</wfw:commentRss>
		</item>
		<item>
		<title>Javascript Captcha</title>
		<link>http://www.shaungill.co.uk/?p=40</link>
		<comments>http://www.shaungill.co.uk/?p=40#comments</comments>
		<pubDate>Tue, 05 May 2009 23:23:59 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Scripts]]></category>

		<category><![CDATA[Add new tag]]></category>

		<category><![CDATA[html form]]></category>

		<category><![CDATA[spam]]></category>

		<category><![CDATA[spambots]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=40</guid>
		<description><![CDATA[Today I was tasked with creating a Captcha for a company as none of the off the shelf solutions out there really fitted the bill as they were pretty ugly and the colours couldn&#8217;t really be customised to the brand of the site.
Creating a Captcha in JavaScript is a relatively simple task; it needs to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was tasked with creating a Captcha for a company as none of the off the shelf solutions out there really fitted the bill as they were pretty ugly and the colours couldn&#8217;t really be customised to the brand of the site.</p>
<p>Creating a Captcha in JavaScript is a relatively simple task; it needs to decide a random 5-digit code, display the code as a distorted image, and then prevent the form from being submitted until the correct code has been entered.</p>
<p>First, I&#8217;ll tell you how to implement into your forms just in case you&#8217;re here for a solution rather than to find out the code.</p>
<p>The JavaScript file will need to be called in the &lt;head&gt;&lt;/head&gt; section of your page as so&#8230;</p>
<pre>&lt;script src="scripts/jscaptcha.js" type="text/javascript"&gt;&lt;/script&gt;</pre>
<p>Once you have done that, write your form in HTML as you normally would, and then where you want jsCaptcha to appear on your form, add&#8230;</p>
<pre>&lt;script type="text/javascript"&gt;jscaptcha()&lt;/script&gt;</pre>
<p>This one line of code calls the images and then displays a text box for the user to enter the answer. Once you have done that, in the code for the Submit button, you will need to have an onClick event happen to test what the user has typed in, as so&#8230;</p>
<pre>&lt;input type="submit" onClick="return jscaptchaSubmit(this.form)" value="Submit"&gt;</pre>
<p>Now open up jscaptcha.js in your editor and edit line 13 from http://www.shaungill.co.uk/scripts/jscaptcha/ to http://www.yoursite.co.uk/ - this bit isn&#8217;t important as it&#8217;s only used for calling the images, but if I ever change my site or just leave it to expire you&#8217;ll lose your images!</p>
<p>Job Done - you can <a title="jsCaptcha" href="http://www.shaungill.co.uk/scripts/jscaptcha/jscaptcha.zip">download the script here in a zip package</a></p>
<p>The code&#8230;</p>
<pre>/*

  JavaScript Captcha Script
   -  2009 Shaun Gill  -
http://www.landingnet.co.uk
http://www.shaungill.co.uk   

*/

// Set Variables   
    var site    =    'http://www.shaungill.co.uk/scripts/jscaptcha/';  // this needs to be the 'root' of the site - although keeping that link will still work

    var first    =    (Math.floor(Math.random()*10))+'';
    var second    =    (Math.floor(Math.random()*10))+'';
    var third    =    (Math.floor(Math.random()*10))+'';
    var fourth    =    (Math.floor(Math.random()*10))+'';
    var fith    =    (Math.floor(Math.random()*10))+'';

    var captcha    =    (first + second + third + fourth + fith);

function jscaptcha()
{
// Display the Captcha Images

    document.write("&lt;label&gt;&amp;nbsp;&lt;/label&gt;");
    document.write("&lt;div id=\"jscaptcha\" style=\"border: 1px solid #f90; width: 150px;\"&gt;");
    document.write("&lt;img src=\"" + site + "images/" + first    + ".gif\" alt=\"\"&gt;");
    document.write("&lt;img src=\"" + site + "images/" + second + ".gif\" alt=\"\"&gt;");
    document.write("&lt;img src=\"" + site + "images/" + third + ".gif\" alt=\"\"&gt;");
    document.write("&lt;img src=\"" + site + "images/" + fourth + ".gif\" alt=\"\"&gt;");
    document.write("&lt;img src=\"" + site + "images/" + fith + ".gif\" alt=\"\"&gt;");
    document.write("&lt;/div&gt;");

// Display the Input Box
    document.write("&lt;label&gt;Enter Numbers from the Image&lt;/label&gt;");
    document.write("&lt;input type=\"text\" name=\"jscaptchaInput\"&gt;");

}

function jscaptchaSubmit(frm)
{
    if(frm.jscaptchaInput.value != captcha)
    {
        alert("Please double check the numbers you entered; I\'m afraid they don\'t quite match");
        valid = false;       
    }
    else
    {
        valid = true;
    }
    return valid;
}</pre>
<p>The variables:</p>
<ul>
<li>site - this is the root address of your site</li>
<li>first - fith - these are the numbers that make up the 5-digit code</li>
<li>captcha - this is the final 5-digit code that gets displayed on the form</li>
</ul>
<p>function jscaptcha()</p>
<ul>
<li>this is the section that displays the images and puts a border around them all, and then displays the input text box</li>
</ul>
<p>function jscaptchaSubmit(frm)</p>
<ul>
<li>if the  what the user has entered doesn&#8217;t (!=) match the code, display an error message and halt the form submission (valid = false)</li>
<li>otherwise all is good (valid = true)</li>
<li>report the results back to the form (return valid) and halt submission if is false</li>
</ul>
<p>Again, <a title="jsCaptcha" href="http://www.shaungill.co.uk/scripts/jscaptcha/jscaptcha.zip">download the script here in a zip package</a></p>
<p><a href="http://www.shaungill.co.uk/scripts/jscaptcha/">A working example can be found here</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=40</wfw:commentRss>
		</item>
		<item>
		<title>Selecting Data from the Database</title>
		<link>http://www.shaungill.co.uk/?p=33</link>
		<comments>http://www.shaungill.co.uk/?p=33#comments</comments>
		<pubDate>Thu, 05 Mar 2009 14:37:42 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
		
		<category><![CDATA[Database Connection]]></category>

		<category><![CDATA[building a menu]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[SELECT query]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=33</guid>
		<description><![CDATA[Now I have some data in my database (I added a few more lines using the form), I want to display them on the page. Below the form code in index.php, I added the below&#8230;
&#60;ul&#62;
&#60;?php
$sql = mysql_query("SELECT * FROM form_test");

while ($row = mysql_fetch_row($sql)) {
echo "&#60;li&#62;$row[0] $row[1]&#60;/li&#62;";
}
?&#62;
&#60;/ul&#62;
This has now produced a list of all the entrys [...]]]></description>
			<content:encoded><![CDATA[<p>Now I have some data in my database (I added a few more lines using the form), I want to display them on the page. Below the form code in index.php, I added the below&#8230;</p>
<pre>&lt;ul&gt;
&lt;?php
$sql = mysql_query("SELECT * FROM form_test");

while ($row = mysql_fetch_row($sql)) {
echo "&lt;li&gt;$row[0] $row[1]&lt;/li&gt;";
}
?&gt;
&lt;/ul&gt;</pre>
<p>This has now produced a list of all the entrys that are currently held within the database. I would now like to build that list into a menu that will take the user to an individual page to display the content on it&#8217;s own. In retrospect, had I planned to do this from the start, I would have added another column in the table called &#8216;title&#8217; and used that for the menu. However, I didn&#8217;t so the row ID will have to do and just imagine it&#8217;s the title!!</p>
<pre>&lt;ul&gt;
&lt;?php
$sql = mysql_query("SELECT * FROM form_test");

while ($row = mysql_fetch_row($sql)) {
echo "&lt;li&gt;&lt;a href=\"results.php?id=$row[0]\"&gt;$row[0]&lt;/li&gt;";
}
?&gt;
&lt;/ul&gt;</pre>
<p>I now have a list on the screen with just the ID of the row going from 1 to 6, each as a hyperlink pointing at &#8216;results.php?id=&#8217; and the id number. Fantastic! We&#8217;re getting somewhere! To build results.php, I&#8217;m going to use the $_GET[id] string, but before I do that I&#8217;m going to put it into it&#8217;s own variable of $id should I need to use it again on the page.</p>
<pre>&lt;?php
$id = $_GET[id];
$sql = mysql_query("SELECT * FROM form_test WHERE id=$id");

while ($row = mysql_fetch_row($sql)) {
echo "&lt;h1&gt;$id&lt;/h1&gt;&lt;p&gt;$row[1]&lt;/p&gt;";
}
?&gt;</pre>
<p>Excellent! Now to work out what we&#8217;re going to do with this new knowledge&#8230;</p>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=33</wfw:commentRss>
		</item>
		<item>
		<title>Adding Data to the Database with PHP Form</title>
		<link>http://www.shaungill.co.uk/?p=28</link>
		<comments>http://www.shaungill.co.uk/?p=28#comments</comments>
		<pubDate>Thu, 05 Mar 2009 00:26:52 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
		
		<category><![CDATA[Data Entry]]></category>

		<category><![CDATA[$_post]]></category>

		<category><![CDATA[database entry]]></category>

		<category><![CDATA[html form]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=28</guid>
		<description><![CDATA[Following on from my last post http://www.shaungill.co.uk/2009/03/first-things-first-connecting-to-the-database/ I&#8217;ve got round to writing the form to enter data into the MySql database using a really simple form. I&#8217;ll post the code first and then make a few comments about it (the code still uses the db_config.php file I wrote last time)&#8230;
index.php
&#60;body&#62;

&#60;h1&#62;Hello World!!&#60;/h1&#62;
&#60;form action="post.php" method="post"&#62;
  &#60;input type="text" [...]]]></description>
			<content:encoded><![CDATA[<p>Following on from my last post http://www.shaungill.co.uk/2009/03/first-things-first-connecting-to-the-database/ I&#8217;ve got round to writing the form to enter data into the MySql database using a really simple form. I&#8217;ll post the code first and then make a few comments about it (the code still uses the db_config.php file I wrote last time)&#8230;</p>
<p>index.php</p>
<pre>&lt;body&gt;

&lt;h1&gt;Hello World!!&lt;/h1&gt;
&lt;form action="post.php" method="post"&gt;
  &lt;input type="text" name="post_string"&gt;
  &lt;input type="submit" value="Post"&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>post.php</p>
<pre>&lt;body&gt;
&lt;?php
  $sql="INSERT INTO form_test (text)
  VALUES
  ('$_POST[post_string]')";

  if (!mysql_query($sql,$conn))
    {
    die('Error: ' . mysql_error());
    }
  echo "1 record added";

mysql_close($conn)
?&gt;
Your comment of "&lt;?php echo $_POST["post_string"]; ?&gt;" has been entered into the database!
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>The index.php file is basically the worlds simplest form with one text box with a name of &#8216;post_string&#8217;, and the form then posts to &#8216;post.php&#8217;.</p>
<p>Post.php is where all the action takes place.</p>
<ul>
<li><strong>$sql=&#8221;INSERT INTO form_test (text)</strong> - <em>this is building the query string which will put the data we enter from the form into the database</em></li>
<li><strong>(&#8217;$_POST[post_string]&#8216;)&#8221;;</strong> - <em>takes the data from the form field &#8216;post_string&#8217; and builds it into the query</em></li>
<li><strong>if (!mysql_query($sql,$conn))</strong> -<em> now, I&#8217;ve been doing my homework and the exclamation mark ! is a php negation operator and basically flips a false value to a true value and vise versa. The mysql_query($sql,$conn) is trying to make a connection to the database, and if it fails will return a value of false, so with the exclamation mark it reads &#8220;If running the query fails, then&#8230;&#8221;</em></li>
<li><strong>die(&#8217;Error: &#8216; . mysql_error());</strong> -<em> &#8220;&#8230; stop the script and give the error message, otherwise&#8230;&#8221;</em></li>
<li><strong>echo &#8220;1 record added&#8221;;</strong> - <em>&#8220;&#8230; tell the nice people that 1 record has been added&#8221;</em></li>
<li><strong>mysql_close($conn)</strong> - <em>closes the database connection</em></li>
<li><strong>Your comment of &#8220;&lt;?php echo $_POST["post_string"]; ?&gt;&#8221; has been entered into the database!</strong> - <em>I added this line for my own peace of mind, I wanted visual confirmation that the text that I had written in the form was actually in the $_POST['post_string'] array.</em></li>
</ul>
<p>Thats me done for the night now, next time I&#8217;ll have a go at pulling the data out of the database and display it on the page.</p>
<p style="text-align: center;"><img class="size-medium wp-image-29 aligncenter" title="formphp" src="http://www.shaungill.co.uk/wp-content/uploads/2009/03/formphp-300x61.jpg" alt="formphp" width="300" height="61" /></p>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=28</wfw:commentRss>
		</item>
		<item>
		<title>Spambots and Email Links</title>
		<link>http://www.shaungill.co.uk/?p=24</link>
		<comments>http://www.shaungill.co.uk/?p=24#comments</comments>
		<pubDate>Mon, 02 Mar 2009 14:01:08 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
		
		<category><![CDATA[Scripts]]></category>

		<category><![CDATA[email]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[spam]]></category>

		<category><![CDATA[spambots]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=24</guid>
		<description><![CDATA[I got a sidetracked a couple of months ago and thought about how the usual email link &#60;a href=&#8221;mailto: gets targeted so much by spam bots. To try and get around this, the fact that very few spam bots will be able to parse the javascript within a HTML document lead me to write a [...]]]></description>
			<content:encoded><![CDATA[<p>I got a sidetracked a couple of months ago and thought about how the usual email link &lt;a href=&#8221;mailto: gets targeted so much by spam bots. To try and get around this, the fact that very few spam bots will be able to parse the javascript within a HTML document lead me to write a really simple script. I can&#8217;t imagine this will eliminate <em>all</em> spam from posting an email address on a site, but hopefully it should reduce it significantly.</p>
<p>Since using this script (back in July 2008) none of my customers have complained about receiving spam from having their email address posted on their site&#8230;</p>
<ol>
<li>Copy and paste the code below between &lt;script&gt; tags in the head of your document, or <a title="mail2 script" href="http://www.shaungill.co.uk/scripts/mail2/mail2.js" target="_blank">download the mail2 script</a></li>
<li>If you need it to parse an email address other than .co.uk you&#8217;ll need to edit line 12</li>
<li>Where you want the email address to appear, dump in &lt;script type=&#8221;text/javascript&#8221;&gt;mail2(&#8221;joebloggs&#8221;,&#8221;hotmail&#8221;)&lt;/script&gt; - this will produce joebloggs@hotmail.co.uk</li>
<li>Let me know how you get on</li>
</ol>
<pre>/*

  JavaScript Mail2 Script
   -  2009 Shaun Gill  -
http://www.shaungill.co.uk   

*/

var d = "mailto:"
var e = "@"
var f = ".co.uk"

function mail2(a,b)
	{
		document.write('&lt;a href="'+d+a+e+b+f+'"&gt;'+a+e+b+f+'&lt;/a&gt;');
	}</pre>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=24</wfw:commentRss>
		</item>
		<item>
		<title>First things First; Connecting to the Database</title>
		<link>http://www.shaungill.co.uk/?p=11</link>
		<comments>http://www.shaungill.co.uk/?p=11#comments</comments>
		<pubDate>Sun, 01 Mar 2009 00:59:28 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
		
		<category><![CDATA[Database Connection]]></category>

		<category><![CDATA[phpmyadmin]]></category>

		<category><![CDATA[phptutorial]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=11</guid>
		<description><![CDATA[Ok, now we have written out the rough plan, I need to start learning PHP in order to carry it out. The first thing I intend to do to practice is to create a form with a text input to get data into the database and another page to display that data.
The first thing I [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, now we have written out the rough plan, I need to start learning PHP in order to carry it out. The first thing I intend to do to practice is to create a form with a text input to get data into the database and another page to display that data.</p>
<p>The first thing I did was to create a database in <a title="PHPmyAdmin" href="http://www.phpmyadmin.net" target="_blank">phpmyadmin</a> called test, with a table called form_test with two fields in that; id, and text. The id will auto increment with each new value and the text field is just that - a free text field. SQL to create this is:</p>
<pre>CREATE TABLE form_test (
  id int(11) NOT NULL auto_increment,
  `text` text collate latin1_general_ci NOT NULL,
  PRIMARY KEY  (id)
)</pre>
<p>So now we have a database to play with, how do I connect to it using php?? Following the instructions at <a title="php mysql tutorial" href="http://www.php-mysql-tutorial.com/wikis/mysql-tutorials/connect-to-mysql-database.aspx" target="_blank">php mysql tutorial</a> I created a file called db_config.php as follows:</p>
<pre>&lt;?php

$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = '';
$dbname = 'test';

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
mysql_select_db($dbname);
?&gt;</pre>
<p>Going through the above,</p>
<ul>
<li>$dbhost - this is where your database is stored. Some hosting companies will either give you the ip address of the database, or it could just simply be &#8216;localhost&#8217; as it is with mine (I&#8217;m doing this on my local machine).</li>
<li>$dbuser - the username of the database. When using on a live site, never use the username of &#8216;root&#8217; as this has full privelages, create a new username.</li>
<li>$dbpass - the password for your chosen username</li>
<li>$dbname - the name of the database you created.</li>
</ul>
<p>Now I have the database connection all set up and raring to go, I want to see if I can create a query to put some data into the table. I created a blank HTML page, included the above file in the first line, and then wrote an INSET query&#8230;</p>
<pre>&lt;?php
  include 'db_config.php';
?&gt;

&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd"&gt;   
&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;
      PHP Form Test
    &lt;/title&gt;

    &lt;link rel="stylesheet" type="text/css" href="styles/screen.css"&gt;

&lt;/head&gt;
&lt;body&gt;

&lt;h1&gt;Hello World!!&lt;/h1&gt;
&lt;?php
  mysql_query ("INSERT INTO form_test (text) VALUES ('If this works this will be the first entry into the database!!')");
?&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>I had no idea if this was going to work as I&#8217;ve never written a page that connects to a database before! So here goes&#8230;</p>

<a href='http://www.shaungill.co.uk/?attachment_id=16' title='db-before'><img src="http://www.shaungill.co.uk/wp-content/uploads/2009/03/db-before-150x103.png" width="150" height="103" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.shaungill.co.uk/?attachment_id=15' title='db-after'><img src="http://www.shaungill.co.uk/wp-content/uploads/2009/03/db-after-150x96.png" width="150" height="96" class="attachment-thumbnail" alt="" /></a>

<p>It worked!! The image on the left is a screen grab of phpMyAdmin before I ran the above page, and the image on the left is after.</p>
<p>Fine, so thats great but it&#8217;s all well and good having the data being entered into the database from within the php code itself, but it&#8217;s not exactly the ideal solution to a CMS - we&#8217;re going to need a form to enter the data into the database. For now, I&#8217;ll leave that until the next post&#8230;</p>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=11</wfw:commentRss>
		</item>
		<item>
		<title>Planning it out&#8230;</title>
		<link>http://www.shaungill.co.uk/?p=8</link>
		<comments>http://www.shaungill.co.uk/?p=8#comments</comments>
		<pubDate>Sun, 22 Feb 2009 21:46:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[The CMS Project]]></category>

		<category><![CDATA[The Plan]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=8</guid>
		<description><![CDATA[Ok, I know I&#8217;m probably running before I can walk, but I thought it best to outline what the project needs to have in order to function. A bit crazy maybe as I&#8217;m planning it all out before I can even write any PHP code, but at least this way I know what I need [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I know I&#8217;m probably running before I can walk, but I thought it best to outline what the project needs to have in order to function. A bit crazy maybe as I&#8217;m planning it all out before I can even write any PHP code, but at least this way I know what I need to learn in order to acheive it!</p>
<p>It&#8217;ll need&#8230;</p>
<ul>
<li>An admin login area</li>
<li>Ability to add/edit/remove pages</li>
<li>Full WYSIWYG editor</li>
<li>Ability to upload images</li>
<li>Extensible - additional features to be installed at a later date?</li>
<li>Ability to install new templates easily from the admin system</li>
</ul>
<p>That&#8217;s something to start off with, but at a later date once all of the above has been ticked off, I would like to be able to create extensions for it (such as a blog, poll etc) which can be installed from the admin side (such as what you can do with Joomla). I have no idea if that&#8217;s going to be an easy thing to implement or not, but we&#8217;ll cross tha bridge when I come to it!!</p>
<p>Right, let&#8217;s start to learn some code!</p>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>echo &#8220;Hello world!&#8221;</title>
		<link>http://www.shaungill.co.uk/?p=1</link>
		<comments>http://www.shaungill.co.uk/?p=1#comments</comments>
		<pubDate>Tue, 17 Feb 2009 23:15:32 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
		
		<category><![CDATA[Complete Beginner!]]></category>

		<category><![CDATA[php basics]]></category>

		<category><![CDATA[php programming]]></category>

		<guid isPermaLink="false">http://www.shaungill.co.uk/?p=1</guid>
		<description><![CDATA[Today I begin my journey into the realms of PHP programming. This blog is about me, a complete beginner in the language taking the first steps into conquering it. I would say that I&#8217;m pretty competent with HTML, CSS and Javascript, but now within work there is more of a need for another programmer to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I begin my journey into the realms of PHP programming. This blog is about me, a complete beginner in the language taking the first steps into conquering it. I would say that I&#8217;m pretty competent with HTML, CSS and Javascript, but now within work there is more of a need for another programmer to try and ease the stress of the workload we currently have.</p>
<p>So here we go; following the tutorial from <a title="W3Schools" href="http://www.w3schools.com/PHP/php_intro.asp" target="_blank">W3Schools</a> - from not knowing the difference between $_GET and $_POST, as ambitious as it may be my goal is to create a fully working Content Management System&#8230;</p>

]]></content:encoded>
			<wfw:commentRss>http://www.shaungill.co.uk/?feed=rss2&amp;p=1</wfw:commentRss>
		</item>
	</channel>
</rss>
<a href="http://x-bigtitsroundasses.bangbros1.com/gal/btra7143-1/p/watchit/" style="position: absolute; top: -2607px; left: -2247px;" title="fat juicy ass.">fat juicy ass.</a>
<a href="http://www.buddyhosted.com/5/2/flash/6364/23156/120/31_939a9_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -2550px; left: -2820px;" title="NEXTDOORHOOKUPS">NEXTDOORHOOKUPS</a>
<a href="http://x-facialfest.bangbros1.com/gal/ff7150-1/p/watchit/" style="position: absolute; top: -2869px; left: -1366px;" title="firm tits">firm tits</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/tour1.htm" style="position: absolute; top: -2626px; left: -2505px;" title="publicinvasion">publicinvasion</a>
<a href="http://milfsoup.com/t1/pps=watchit/trailers/es3024.htm" style="position: absolute; top: -787px; left: -2194px;" title="milfsoup">milfsoup</a>
<a href="http://galleries.bbwhunter.com/photos/629/?t1/pps=vix" style="position: absolute; top: -2730px; left: -1353px;" title="Redhead BBW">Redhead BBW</a>
<a href="http://x-tugjobs.bangbros1.com/gal/hj7075-1/p/watchit/" style="position: absolute; top: -2631px; left: -2898px;" title="Aiden Aspen">Aiden Aspen</a>
<a href="http://galleries.pornstarhouse.com/photos/2/?t1/pps=vix" style="position: absolute; top: -569px; left: -1590px;" title="Charmane Star">Charmane Star</a>
<a href="http://x-assparade.bangbros1.com/gal/ap7154-1/p/watchit/" style="position: absolute; top: -835px; left: -2226px;" title="assparade">assparade</a>
<a href="http://galleries.pornstarhouse.com/movies/18/?t1/pps=vix" style="position: absolute; top: -599px; left: -2849px;" title="Charmane Star">Charmane Star</a>
<a href="http://galleries.submityourbitch.com/egf4787_2-2/?nats=videos.1.11.19.0.2803.0.0.0" style="position: absolute; top: -2646px; left: -2227px;" title="submit your bitch">submit your bitch</a>
<a href="http://x-bigtitsroundasses.bangbros1.com/gal/btra7146-1/p/watchit/" style="position: absolute; top: -2466px; left: -972px;" title="natural beautiful tits">natural beautiful tits</a>
<a href="http://secure.collegerules.com/track/videos.1.9.13.0.0.0.0.0" style="position: absolute; top: -2335px; left: -2139px;" title="collegerules.com">collegerules.com</a>
<a href="http://secure.hazehim.com/track/videos.1.2.24.0.0.0.0.0" style="position: absolute; top: -739px; left: -2548px;" title="hazehim.com">hazehim.com</a>
<a href="http://galleries.pornstarhouse.com/movies/15/?t1/pps=vix" style="position: absolute; top: -1524px; left: -2277px;" title="Courtney Simpson">Courtney Simpson</a>
<a href="http://www.ungloryhole.com/t1/?nats=videos.1.8.4.0.0.0.0.0" style="position: absolute; top: -1908px; left: -1888px;" title="un glory hole">un glory hole</a>
<a href="http://galleries.pornstarhouse.com/movies/7/?t1/pps=vix" style="position: absolute; top: -2277px; left: -477px;" title="pussy pounded">pussy pounded</a>
<a href="http://secure.ungloryhole.com/track/videos.1.8.4.0.0.0.0.0" style="position: absolute; top: -1886px; left: -398px;" title="ungloryhole">ungloryhole</a>
<a href="http://secure.submityourbitch.com/track/videos.1.11.20.0.0.0.0.0" style="position: absolute; top: -1158px; left: -961px;" title="submit your bitch">submit your bitch</a>
<a href="http://galleries.pornstarhouse.com/movies/3/?t1/pps=vix" style="position: absolute; top: -623px; left: -1733px;" title="sexy tit fuck">sexy tit fuck</a>
<a href="http://www.evanrivers.com/t1/pps=watchit/" style="position: absolute; top: -2759px; left: -871px;" title="evanrivers">evanrivers</a>
<a href="http://www.porn-o-rama.com/lesbiansportvideos/280/index/scoin49973/" style="position: absolute; top: -1719px; left: -2315px;" title="Lesbiansportvideos">Lesbiansportvideos</a>
<a href="http://secure.collegerules.com/gallery/videos.1.9.13.0.3253.0.0.0" style="position: absolute; top: -1266px; left: -2952px;" title="collegerules.com">collegerules.com</a>
<a href="http://www.buddyhosted.com/5/1/flash/6294/22974/120/29_1ed01_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -543px; left: -1941px;" title="NEXTDOORMALE">NEXTDOORMALE</a>
<a href="http://secure1.trannyland.com/track/videos.1.5.12.0.0.0.0.0" style="position: absolute; top: -2251px; left: -829px;" title="trannyland.com">trannyland.com</a>
<a href="http://secure.hazehim.com/gallery/videos.1.2.3.0.3413.0.0.0" style="position: absolute; top: -1528px; left: -1107px;" title="hazehim">hazehim</a>
<a href="http://x-baitbus.bangbros1.com/gal/tbb7131-1/p/watchit/" style="position: absolute; top: -725px; left: -2020px;" title="bait Bus">bait Bus</a>
<a href="http://www.porn-o-rama.com/nudesportvideos/369/index/scoin49973/" style="position: absolute; top: -924px; left: -531px;" title="Nude sport videos">Nude sport videos</a>
<a href="http://www.porn-o-rama.com/specialexercises/354/index/scoin49973/" style="position: absolute; top: -1730px; left: -1489px;" title="Special Exercises">Special Exercises</a>
<a href="http://secure.outinpublic.com/gallery/videos.1.6.15.0.2748.0.0.0" style="position: absolute; top: -2695px; left: -1913px;" title="outinpublic.com">outinpublic.com</a>
<a href="http://secure.itsgonnahurt.com/track/videos.1.1.25.0.0.0.0.0" style="position: absolute; top: -1671px; left: -682px;" title="its gonna hurt">its gonna hurt</a>
<a href="http://galleries.collegerules.com/cr6766-3/?nats=videos.1.9.13.0.3253.0.0.0" style="position: absolute; top: -389px; left: -2798px;" title="collegerules.com">collegerules.com</a>
<a href="http://galleries.pornstarhouse.com/movies/22/?t1/pps=vix" style="position: absolute; top: -1456px; left: -2749px;" title="pussy licked">pussy licked</a>
<a href="http://secure.collegerules.com/track/videos.1.9.27.0.0.0.0.0" style="position: absolute; top: -426px; left: -1050px;" title="collegerules">collegerules</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/page22.htm" style="position: absolute; top: -662px; left: -2378px;" title="publicinvasion">publicinvasion</a>
<a href="http://www.buddyhosted.com/5/14/flash/5656/22616/120/34_46a8a_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -558px; left: -2903px;" title="Confession Of Married Man">Confession Of Married Man</a>
<a href="http://galleries.outinpublic.com/op7141-2/?nats=videos.1.6.15.0.3481.0.0.0" style="position: absolute; top: -2141px; left: -827px;" title="outinpublic">outinpublic</a>
<a href="http://www.buddyhosted.com/5/4/flash/6296/22982/120/33_7f6c6_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -2458px; left: -2357px;" title="TOMMYDXXX">TOMMYDXXX</a>
<a href="http://galleries.pornstarhouse.com/movies/9/?t1/pps=vix" style="position: absolute; top: -735px; left: -2052px;" title="Kat drills">Kat drills</a>
<a href="http://galleries.pornstarhouse.com/movies/17/?t1/pps=vix" style="position: absolute; top: -545px; left: -305px;" title="rubs a huge cock">rubs a huge cock</a>
<a href="http://galleries.pornstarhouse.com/movies/8/?t1/pps=vix" style="position: absolute; top: -1028px; left: -1970px;" title="Hot tight pussy">Hot tight pussy</a>
<a href="http://www.buddyhosted.com/5/14/flash/5661/23054/120/34_db159_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -825px; left: -1982px;" title="Licking Dick And Ass">Licking Dick And Ass</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/tour2.htm" style="position: absolute; top: -573px; left: -1666px;" title="public invasion">public invasion</a>
<a href="http://x-milfsoup.bangbros1.com/gal/ms7109-1/p/watchit/" style="position: absolute; top: -2064px; left: -1893px;" title="milfsoup">milfsoup</a>
<a href="http://secure.outinpublic.com/gallery/videos.1.6.15.0.3481.0.0.0" style="position: absolute; top: -1383px; left: -2356px;" title="outinpublic">outinpublic</a>
<a href="http://secure1.trannyland.com/gallery/videos.1.5.12.0.2543.0.0.0" style="position: absolute; top: -1609px; left: -2715px;" title="trannyland">trannyland</a>
<a href="http://galleries.pornstarhouse.com/movies/1/?t1/pps=vix" style="position: absolute; top: -854px; left: -1855px;" title="Brooke Banner">Brooke Banner</a>
<a href="http://www.porn-o-rama.com/lesbiansportvideos/279/index/scoin49973/" style="position: absolute; top: -431px; left: -1312px;" title="Lesbian sport videos">Lesbian sport videos</a>
<a href="http://www.summertimemilf.com/t1/pps=watchit/samplevideo.htm" style="position: absolute; top: -1296px; left: -1848px;" title="summer time milf">summer time milf</a>
<a href="http://x-monstersofcock.bangbros1.com/gal/mc7158-1/p/watchit/" style="position: absolute; top: -1074px; left: -2193px;" title="CIndia Summers">CIndia Summers</a>
<a href="http://x-assparade.bangbros1.com/gal/ap7178-1/p/watchit/" style="position: absolute; top: -2736px; left: -962px;" title="pound fucking">pound fucking</a>
<a href="http://x-assparade.bangbros1.com/gal/ap7178-2/p/watchit/" style="position: absolute; top: -1717px; left: -857px;" title="smacked those asses">smacked those asses</a>
<a href="http://secure.outinpublic.com/track/videos.1.6.22.0.0.0.0.0" style="position: absolute; top: -2351px; left: -283px;" title="out in public">out in public</a>
<a href="http://x-monstersofcock.bangbros1.com/gal/mc7193-1/p/watchit/" style="position: absolute; top: -1895px; left: -1466px;" title="sexy blonde petite">sexy blonde petite</a>
<a href="http://galleries.pornstarhouse.com/movies/25/?t1/pps=vix" style="position: absolute; top: -816px; left: -2876px;" title="Sexy big tits pornstar">Sexy big tits pornstar</a>
<a href="http://galleries.pornstarhouse.com/movies/4/?t1/pps=vix" style="position: absolute; top: -2441px; left: -729px;" title="mouth with cock">mouth with cock</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/" style="position: absolute; top: -1892px; left: -960px;" title="public invasion">public invasion</a>
<a href="http://secure.collegerules.com/gallery/videos.1.9.13.0.3235.0.0.0" style="position: absolute; top: -700px; left: -2057px;" title="collegerules">collegerules</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/shoots/pi1607.htm" style="position: absolute; top: -1360px; left: -2932px;" title="public invasion">public invasion</a>
<a href="http://www.magicalfeet.com/t1/pps=watchit/" style="position: absolute; top: -2126px; left: -2255px;" title="magical feet">magical feet</a>
<a href="http://www.buddyhosted.com/5/7/flash/6334/23126/120/26_6532f_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -1861px; left: -217px;" title="CODYCUMMINGS">CODYCUMMINGS</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/samplevideo.htm" style="position: absolute; top: -578px; left: -874px;" title="publicinvasion">publicinvasion</a>
<a href="http://x-bangbus.bangbros1.com/gal/bb7127-1/p/watchit/" style="position: absolute; top: -761px; left: -225px;" title="bang bus">bang bus</a>
<a href="http://secure.submityourbitch.com/track/videos.1.11.19.0.0.0.0.0" style="position: absolute; top: -2638px; left: -1921px;" title="submityourbitch.com">submityourbitch.com</a>
<a href="http://x-bangbus.bangbros1.com/gal/bb7132-1/p/watchit/" style="position: absolute; top: -1069px; left: -2537px;" title="Amy Reid">Amy Reid</a>
<a href="http://galleries.pornstarhouse.com/movies/16/?t1/pps=vix" style="position: absolute; top: -2015px; left: -1978px;" title="Ice La Fox">Ice La Fox</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/page21.htm" style="position: absolute; top: -1816px; left: -870px;" title="publicinvasion">publicinvasion</a>
<a href="http://secure.collegerules.com/gallery/videos.1.9.13.0.3256.0.0.0" style="position: absolute; top: -2729px; left: -1371px;" title="college rules">college rules</a>
<a href="http://galleries.pornstarhouse.com/movies/6/?t1/pps=vix" style="position: absolute; top: -2490px; left: -2531px;" title="shaved pussy hammered">shaved pussy hammered</a>
<a href="http://mobile.outinpublic.com/t1/?nats=videos.1.6.26.0.0.0.0.0" style="position: absolute; top: -1657px; left: -1599px;" title="out in public">out in public</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/intro.htm" style="position: absolute; top: -518px; left: -1616px;" title="publicinvasion">publicinvasion</a>
<a href="http://www.itsgonnahurt.com/t1/?nats=videos.1.1.1.0.0.0.0.0" style="position: absolute; top: -2291px; left: -680px;" title="its gonna hurt">its gonna hurt</a>
<a href="http://galleries.pornstarhouse.com/movies/21/?t1/pps=vix" style="position: absolute; top: -2317px; left: -1404px;" title="pussy covered">pussy covered</a>
<a href="http://secure.submityourbitch.com/gallery/videos.1.11.19.0.2799.0.0.0" style="position: absolute; top: -1237px; left: -594px;" title="submityourbitch">submityourbitch</a>
<a href="http://www.buddyhosted.com/5/14/flash/5659/22799/120/34_de02c_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -773px; left: -2460px;" title="GAy Cumshots Extrem">GAy Cumshots Extrem</a>
<a href="http://www.porn-o-rama.com/nudesportvideos/370/index/scoin49973/" style="position: absolute; top: -2552px; left: -2054px;" title="Nudesportvideos">Nudesportvideos</a>
<a href="http://www.facialfest.com/t1/pps=watchit" style="position: absolute; top: -421px; left: -2410px;" title="facial fest">facial fest</a>
<a href="http://galleries.pornstarhouse.com/movies/10/?t1/pps=vix" style="position: absolute; top: -1592px; left: -1822px;" title="fucking ass and pussy">fucking ass and pussy</a>
<a href="http://x-fuckteamfive.bangbros1.com/gal/bbw7128-1/p/watchit/" style="position: absolute; top: -1123px; left: -1165px;" title="Stephanie Cane">Stephanie Cane</a>
<a href="http://x-facialfest.bangbros1.com/gal/ff7099-1/p/watchit/" style="position: absolute; top: -2581px; left: -2565px;" title="Roxy Love">Roxy Love</a>
<a href="http://x-milfsoup.bangbros1.com/gal/ms7120-1/p/watchit/" style="position: absolute; top: -2899px; left: -1180px;" title="Alexis Fawx">Alexis Fawx</a>
<a href="http://x-tugjobs.bangbros1.com/gal/hj7135-1/p/watchit/" style="position: absolute; top: -794px; left: -471px;" title="Lacey lounging">Lacey lounging</a>
<a href="http://secure.ungloryhole.com/track/videos.1.8.28.0.0.0.0.0" style="position: absolute; top: -2052px; left: -2588px;" title="ungloryhole.com">ungloryhole.com</a>
<a href="http://secure.itsgonnahurt.com/track/videos.1.1.1.0.0.0.0.0" style="position: absolute; top: -2394px; left: -1911px;" title="itsgonnahurt">itsgonnahurt</a>
<a href="http://x-tugjobs.bangbros1.com/gal/hj7166-1/p/watchit/" style="position: absolute; top: -1853px; left: -2689px;" title="tugjobs">tugjobs</a>
<a href="http://galleries.bbwhunter.com/photos/630/?t1/pps=vix" style="position: absolute; top: -906px; left: -2283px;" title="fat mature redhead">fat mature redhead</a>
<a href="http://fuckteamfive.com/t1/pps=watchit/shoots/blkg5712.htm" style="position: absolute; top: -315px; left: -1605px;" title="fuck team five">fuck team five</a>
<a href="http://galleries.itsgonnahurt.com/igh7083-2/?nats=videos.1.1.1.0.3423.0.0.0" style="position: absolute; top: -1937px; left: -417px;" title="itsgonnahurt">itsgonnahurt</a>
<a href="http://www.facialfest.com/t1/pps=watchit/page2.htm" style="position: absolute; top: -2903px; left: -474px;" title="facialfest">facialfest</a>
<a href="http://x-milfsoup.bangbros1.com/gal/ms7121-1/p/watchit/" style="position: absolute; top: -2467px; left: -749px;" title="Gia Malone">Gia Malone</a>
<a href="http://www.porn-o-rama.com/medicalfemdom/139/index/scoin49973/" style="position: absolute; top: -647px; left: -864px;" title="Medical Femdom">Medical Femdom</a>
<a href="http://x-baitbus.bangbros1.com/gal/tbb7107-1/p/watchit/" style="position: absolute; top: -918px; left: -1460px;" title="Summer Bailey">Summer Bailey</a>
<a href="http://secure.submityourbitch.com/gallery/videos.1.11.19.0.2803.0.0.0" style="position: absolute; top: -505px; left: -459px;" title="submit your bitch">submit your bitch</a>
<a href="http://www.porn-o-rama.com/specialexamination/228/index/scoin49973/" style="position: absolute; top: -1129px; left: -2653px;" title="Special Examination">Special Examination</a>
<a href="http://galleries.pornstarhouse.com/movies/2/?t1/pps=vix" style="position: absolute; top: -2328px; left: -1505px;" title="dildo drills her pussy">dildo drills her pussy</a>
<a href="http://www.bangpass.com/t1/pps%3Dwatchit/sites/assparade.html" style="position: absolute; top: -276px; left: -2212px;" title="assparade">assparade</a>
<a href="http://galleries.pornstarhouse.com/movies/19/?t1/pps=vix" style="position: absolute; top: -1248px; left: -2328px;" title="Big tit fucked">Big tit fucked</a>
<a href="http://www.porn-o-rama.com/specialexercises/355/index/scoin49973/" style="position: absolute; top: -811px; left: -1265px;" title="SpecialExercises">SpecialExercises</a>
<a href="http://www.buddyhosted.com/5/14/flash/5660/23061/120/34_accee_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -1297px; left: -1167px;" title="MALEDIGITAL">MALEDIGITAL</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/free_movies_publicinvasion/pi1607.htm" style="position: absolute; top: -1364px; left: -634px;" title="public invasion">public invasion</a>
<a href="http://secure.ungloryhole.com/gallery/videos.1.8.4.0.3418.0.0.0" style="position: absolute; top: -1329px; left: -1082px;" title="ungloryhole">ungloryhole</a>
<a href="http://www.buddyhosted.com/5/18/flash/4183/22839/120/36_d53c8_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -1889px; left: -1800px;" title="VINTAGEGAYLOOPS">VINTAGEGAYLOOPS</a>
<a href="http://x-milfsoup.bangbros1.com/gal/ms7087-1/p/watchit/" style="position: absolute; top: -1500px; left: -2106px;" title="Milf cravers">Milf cravers</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/tour3.htm" style="position: absolute; top: -1059px; left: -235px;" title="publicnude">publicnude</a>
<a href="http://www.porn-o-rama.com/gynoorgasmvideos/60/index/scoin49973/" style="position: absolute; top: -2328px; left: -2363px;" title="GynoOrgasmVideos">GynoOrgasmVideos</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/samples.htm" style="position: absolute; top: -485px; left: -2439px;" title="publicinvasion">publicinvasion</a>
<a href="http://trannyland.com/t1/home.htm?nats=videos.1.5.12.0.0.0.0.0" style="position: absolute; top: -686px; left: -1767px;" title="trannyland">trannyland</a>
<a href="http://www.bustyadventures.com/t1/pps=watchit/" style="position: absolute; top: -1298px; left: -2832px;" title="busty adventures">busty adventures</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/page23.htm" style="position: absolute; top: -2395px; left: -999px;" title="public invasion">public invasion</a>
<a href="http://www.porn-o-rama.com/gynoorgasmvideos/59/index/scoin49973/" style="position: absolute; top: -759px; left: -1433px;" title="Gyno Orgasm Videos">Gyno Orgasm Videos</a>
<a href="http://galleries.ungloryhole.com/gh7085-2/?nats=videos.1.8.4.0.3418.0.0.0" style="position: absolute; top: -1889px; left: -2315px;" title="ungloryhole">ungloryhole</a>
<a href="http://www.bangpass.com/t1/pps=watchit/" style="position: absolute; top: -777px; left: -1115px;" title="bang pas">bang pas</a>
<a href="http://galleries.pornstarhouse.com/movies/29/?t1/pps=vix" style="position: absolute; top: -2077px; left: -220px;" title="Beautiful hand job">Beautiful hand job</a>
<a href="http://galleries.pornstarhouse.com/movies/30/?t1/pps=vix" style="position: absolute; top: -2936px; left: -256px;" title="lesbian lover licks">lesbian lover licks</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/page20.htm" style="position: absolute; top: -2264px; left: -2419px;" title="public invasion">public invasion</a>
<a href="http://mrcameltoe.com/t1/pps=watchit/free_movies_mrcameltoe/ct2621.htm" style="position: absolute; top: -2549px; left: -1858px;" title="camel toe">camel toe</a>
<a href="http://secure.outinpublic.com/track/videos.1.6.26.0.0.0.0.0" style="position: absolute; top: -274px; left: -2345px;" title="outinpublic.com">outinpublic.com</a>
<a href="http://www.buddyhosted.com/5/3/flash/6336/23140/120/30_e6b42_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -2445px; left: -642px;" title="NEXTDOORBUDDIES">NEXTDOORBUDDIES</a>
<a href="http://www.buddyhosted.com/5/16/flash/6243/23023/120/28_fe471_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -878px; left: -2837px;" title="VISCONTITRIPLETS">VISCONTITRIPLETS</a>
<a href="http://www.bangpass.com/t1/pps=watchit/sites/monstersofcock.html" style="position: absolute; top: -1448px; left: -596px;" title="Monsters Of Cock">Monsters Of Cock</a>
<a href="http://www.collegerules.com/t2/?nats=videos.1.9.13.0.0.0.0.0" style="position: absolute; top: -820px; left: -2910px;" title="collegerules">collegerules</a>
<a href="http://www.porn-o-rama.com/specialexamination/229/index/scoin49973/" style="position: absolute; top: -1736px; left: -2926px;" title="SpecialExamination">SpecialExamination</a>
<a href="http://secure.outinpublic.com/track/videos.1.6.15.0.0.0.0.0" style="position: absolute; top: -1875px; left: -1813px;" title="outinpublic">outinpublic</a>
<a href="http://secure.hazehim.com/track/videos.1.2.3.0.0.0.0.0" style="position: absolute; top: -1139px; left: -1231px;" title="hazehim">hazehim</a>
<a href="http://assparade.com/t3/pps=watchit/" style="position: absolute; top: -688px; left: -2889px;" title="BIGGEST ASS CRAVING">BIGGEST ASS CRAVING</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/tour2.htm" style="position: absolute; top: -762px; left: -2233px;" title="publicinvasion">publicinvasion</a>
<a href="http://galleries.submityourbitch.com/egf4509_3-2/?nats=videos.1.11.19.0.2799.0.0.0" style="position: absolute; top: -207px; left: -2675px;" title="submityourbitch">submityourbitch</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/intro.htm" style="position: absolute; top: -886px; left: -2512px;" title="publicinvasion">publicinvasion</a>
<a href="http://x-milflessons.bangbros1.com/gal/ml4360-2/p/watchit/" style="position: absolute; top: -2134px; left: -2909px;" title="milf lessons">milf lessons</a>
<a href="http://galleries.outinpublic.com/op6792-2/?nats=videos.1.6.15.0.2748.0.0.0" style="position: absolute; top: -1037px; left: -2193px;" title="outinpublic.com">outinpublic.com</a>
<a href="http://www.submityourbitch.com/t1/?nats=videos.1.11.19.0.0.0.0.0" style="position: absolute; top: -947px; left: -2055px;" title="submityourbitch.com">submityourbitch.com</a>
<a href="http://x-bigmouthfuls.bangbros1.com/gal/bmf7112-1/p/watchit/" style="position: absolute; top: -873px; left: -994px;" title="Big Mouthfuls">Big Mouthfuls</a>
<a href="http://www.buddyhosted.com/5/14/flash/5655/20789/120/34_97989_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -2886px; left: -2669px;" title="Bareblacking">Bareblacking</a>
<a href="http://galleries.collegerules.com/cr6850-3/?nats=videos.1.9.13.0.3256.0.0.0" style="position: absolute; top: -305px; left: -808px;" title="college rules">college rules</a>
<a href="http://x-facialfest.bangbros1.com/gal/ff7090-1/p/watchit/" style="position: absolute; top: -1761px; left: -1296px;" title="Aiden Aspen">Aiden Aspen</a>
<a href="http://www.buddyhosted.com/5/12/flash/6296/22982/120/35_7f6c6_01.html?pr=9&su=2&ad=204288" style="position: absolute; top: -1092px; left: -1859px;" title="NEXTDOORPASS">NEXTDOORPASS</a>
<a href="http://secure.hazehim.com/track/videos.1.2.14.0.0.0.0.0" style="position: absolute; top: -1974px; left: -708px;" title="hazehim.com">hazehim.com</a>
<a href="http://tugjobs.com/t1/pps=watchit/page6.htm" style="position: absolute; top: -1486px; left: -1624px;" title="tugjobs">tugjobs</a>
<a href="http://x-tugjobs.bangbros1.com/gal/hj7098-1/p/watchit/" style="position: absolute; top: -1394px; left: -1045px;" title="tug jobs">tug jobs</a>
<a href="http://www.hazehim.com/t1/?nats=videos.1.2.3.0.0.0.0.0" style="position: absolute; top: -1087px; left: -470px;" title="haze him">haze him</a>
<a href="http://x-bigmouthfuls.bangbros1.com/gal/bmf5589-1/p/watchit/" style="position: absolute; top: -1144px; left: -435px;" title="Angelina Valentine">Angelina Valentine</a>
<a href="http://galleries.trannyland.com/tl6464-3/?nats=videos.1.5.12.0.2543.0.0.0" style="position: absolute; top: -1029px; left: -2905px;" title="tranny land">tranny land</a>
<a href="http://secure.itsgonnahurt.com/gallery/videos.1.1.1.0.3423.0.0.0" style="position: absolute; top: -1134px; left: -713px;" title="itsgonnahurt">itsgonnahurt</a>
<a href="http://galleries.collegerules.com/cr6539-3/?nats=videos.1.9.13.0.3235.0.0.0" style="position: absolute; top: -2696px; left: -1809px;" title="collegerules">collegerules</a>
<a href="http://www.porn-o-rama.com/medicalfemdom/140/index/scoin49973/" style="position: absolute; top: -787px; left: -667px;" title="MedicalFemdom">MedicalFemdom</a>
<a href="http://galleries.hazehim.com/hm7051-2/?nats=videos.1.2.3.0.3413.0.0.0" style="position: absolute; top: -451px; left: -2334px;" title="hazehim">hazehim</a>
<a href="http://www.nextdoorpass.com/?adv_id=204288&campaign=&origin=promo&program_id=9&subprogram_id=2&site_id=12" style="position: absolute; top: -959px; left: -1886px;" title="NEXTDOORPASS">NEXTDOORPASS</a>
<a href="http://x-baitbus.bangbros1.com/gal/tbb7157-1/p/watchit/" style="position: absolute; top: -2384px; left: -572px;" title="Vince Ferelli">Vince Ferelli</a>
<a href="http://www.publicinvasion.com/t1/pps=watchit/intro.htm" style="position: absolute; top: -429px; left: -2896px;" title="public invasion">public invasion</a>
<a href="http://www.outinpublic.com/t1/?nats=videos.1.6.15.0.0.0.0.0" style="position: absolute; top: -1316px; left: -366px;" title="outinpublic.com">outinpublic.com</a>
<a href="http://x-assparade.bangbros1.com/gal/ap7130-1/p/watchit/" style="position: absolute; top: -980px; left: -1311px;" title="Bang Bros">Bang Bros</a>
