<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>withinweb</title>
	<atom:link href="http://www.withinweb.com/info/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.withinweb.com/info</link>
	<description>Information and support for products of withinweb.com</description>
	<lastBuildDate>Sun, 21 Apr 2013 16:30:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Warning messages for depreciated functions</title>
		<link>http://www.withinweb.com/info/2013/04/21/warning-messages-for-depreciated-functions/</link>
		<comments>http://www.withinweb.com/info/2013/04/21/warning-messages-for-depreciated-functions/#comments</comments>
		<pubDate>Sun, 21 Apr 2013 16:30:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General PHP]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=935</guid>
		<description><![CDATA[In version PHP 5 there is a new warning state of E_STRICT
To remove there warning messages use :
error_reporting(E_ALL &#38; ~E_NOTICE &#38; ~E_STRICT);
Depreciated functions still exist and you get the warning. So they work as expected. However in a future version they might disappear.
]]></description>
			<content:encoded><![CDATA[<p>In version PHP 5 there is a new warning state of E_STRICT</p>
<p>To remove there warning messages use :</p>
<p>error_reporting(E_ALL &amp; ~E_NOTICE &amp; ~E_STRICT);</p>
<p>Depreciated functions still exist and you get the warning. So they work as expected. However in a future version they might disappear.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2013/04/21/warning-messages-for-depreciated-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New PHP script to register users on your site</title>
		<link>http://www.withinweb.com/info/2013/04/15/new-php-script-to-register-users-on-your-site/</link>
		<comments>http://www.withinweb.com/info/2013/04/15/new-php-script-to-register-users-on-your-site/#comments</comments>
		<pubDate>Mon, 15 Apr 2013 10:17:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General PHP]]></category>
		<category><![CDATA[PHP-Register]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=931</guid>
		<description><![CDATA[PHP-Register is a new PHP / mySQL application that is used to easily create forms that collect data from your visitors before they are directed to a page of your choice.
The application is easy to instal on on Linux type web server or Windows web server providing it has PHP and mySQL.
In the administration pages [...]]]></description>
			<content:encoded><![CDATA[<p>PHP-Register is a new PHP / mySQL application that is used to easily create forms that collect data from your visitors before they are directed to a page of your choice.</p>
<p>The application is easy to instal on on Linux type web server or Windows web server providing it has PHP and mySQL.</p>
<p>In the administration pages you can create forms with each form having input boxes of text, textarea, drop down lists, checkboxes or radio buttons.  Each input may have validation allowing you to define the data that a visitor can enter.</p>
<p>For full details, refer to<a title="PHP-Register" href="http://www.withinweb.com/phpregister/" target="_blank"> http://www.withinweb.com/phpregister/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2013/04/15/new-php-script-to-register-users-on-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using different PHP versions on your web site</title>
		<link>http://www.withinweb.com/info/2013/03/13/using-different-php-versions-on-your-web-site/</link>
		<comments>http://www.withinweb.com/info/2013/03/13/using-different-php-versions-on-your-web-site/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 14:29:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General PHP]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=929</guid>
		<description><![CDATA[Sometimes it may be necessary to use a different version of PHP on a web folder rather than the default.  This may be when you have an application that only works on later versions of PHP as it contains functions that only work on later versions of PHP.
On some web servers this can be done [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it may be necessary to use a different version of PHP on a web folder rather than the default.  This may be when you have an application that only works on later versions of PHP as it contains functions that only work on later versions of PHP.</p>
<p>On some web servers this can be done using AddHandler in an htaccess file in the folder that you want a different version of PHP in.</p>
<p>So for version PHP 5.1</p>
<p>AddHandler application/x-httpd-php5 .php5 .php4 .php .php3 .php2 .phtml<br />
AddType application/x-httpd-php5 .php5 .php4 .php .php3 .php2 .phtml</p>
<p>You should check with your hosting to make sure that this will work of course.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2013/03/13/using-different-php-versions-on-your-web-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a static class</title>
		<link>http://www.withinweb.com/info/2013/03/13/what-is-a-static-class/</link>
		<comments>http://www.withinweb.com/info/2013/03/13/what-is-a-static-class/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 14:21:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=927</guid>
		<description><![CDATA[In Object Orientated Programming, you may have an object called vehicle.  You could create instances of that vehicle called car, bike, van and so on.  Static classes cannot created instances so are really just like functions in programming languages like VB6. Static classes are useful where you know you do not need to create an [...]]]></description>
			<content:encoded><![CDATA[<p>In Object Orientated Programming, you may have an object called vehicle.  You could create instances of that vehicle called car, bike, van and so on.  Static classes cannot created instances so are really just like functions in programming languages like VB6. Static classes are useful where you know you do not need to create an instance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2013/03/13/what-is-a-static-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EasyPHP 12.1 bug when displaying local site</title>
		<link>http://www.withinweb.com/info/2013/01/30/easyphp-12-1-bug-when-displaying-local-site/</link>
		<comments>http://www.withinweb.com/info/2013/01/30/easyphp-12-1-bug-when-displaying-local-site/#comments</comments>
		<pubDate>Wed, 30 Jan 2013 11:07:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EasyPHP]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=917</guid>
		<description><![CDATA[EasyPHP 12.1
If you install EasyPHP and find that it displays a blank page when you try to access the administration page, and it just sits there waiting for 127.0.0.1, then this may be caused by a bug in Internet Explorer when working with the particular version of Apache.
To overcome this, try the administration page http://localhost/home/ [...]]]></description>
			<content:encoded><![CDATA[<p>EasyPHP 12.1</p>
<p>If you install EasyPHP and find that it displays a blank page when you try to access the administration page, and it just sits there waiting for 127.0.0.1, then this may be caused by a bug in Internet Explorer when working with the particular version of Apache.</p>
<p>To overcome this, try the administration page http://localhost/home/ using FireFox or Chrome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2013/01/30/easyphp-12-1-bug-when-displaying-local-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EasyPHP and Windows 8 64-bit</title>
		<link>http://www.withinweb.com/info/2013/01/20/easyphp-and-windows-8-64-bit/</link>
		<comments>http://www.withinweb.com/info/2013/01/20/easyphp-and-windows-8-64-bit/#comments</comments>
		<pubDate>Sun, 20 Jan 2013 12:03:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EasyPHP]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=910</guid>
		<description><![CDATA[When I downloaded EasyPHP and installed it on my Windows 8 laptop, it appeared to start correctly with the EasyPHP icon in the tray, but it would not load the web pages at http://127.0.0.1
This is how I solved it:


from your EasyPHP short cut icon, right click and select Properties
select the &#8220;Compatibility&#8221; tab
check &#8220;Run this program [...]]]></description>
			<content:encoded><![CDATA[<p>When I downloaded EasyPHP and installed it on my Windows 8 laptop, it appeared to start correctly with the EasyPHP icon in the tray, but it would not load the web pages at http://127.0.0.1</p>
<p>This is how I solved it:</p>
<div>
<ul>
<li>from your EasyPHP short cut icon, right click and select Properties</li>
<li>select the &#8220;Compatibility&#8221; tab</li>
<li>check &#8220;Run this program in compatibility mode for:&#8221; and then select Windows 7</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2013/01/20/easyphp-and-windows-8-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 Short Cuts</title>
		<link>http://www.withinweb.com/info/2013/01/19/windows-8-short-cuts/</link>
		<comments>http://www.withinweb.com/info/2013/01/19/windows-8-short-cuts/#comments</comments>
		<pubDate>Sat, 19 Jan 2013 19:31:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=907</guid>
		<description><![CDATA[Windows 8 is not initially intuitive to use, so some short cuts are useful to learn to allow you to switch modes.
Here is a short list of five shortcuts.
Note: In case you&#8217;re new to keyboard shortcuts, all of these involve holding down the Windows key (it&#8217;s to the left of the space bar), then tapping [...]]]></description>
			<content:encoded><![CDATA[<p>Windows 8 is not initially intuitive to use, so some short cuts are useful to learn to allow you to switch modes.</p>
<p>Here is a short list of five shortcuts.</p>
<p>Note: In case you&#8217;re new to keyboard shortcuts, all of these involve holding down the Windows key (it&#8217;s to the left of the space bar), then tapping the appropriate letter or function key.</p>
<p><strong>Windows-C</strong> Immediately brings up the Charms bar, for quick access to things like Search, Share, and Settings.</p>
<p><strong>Windows-D</strong> Switches you to Desktop mode—a place I suspect many users will prefer to hang out, at least initially. Once you&#8217;re in that mode, pressing Windows-D again toggles between minimize/restore all windows, same as in Windows 7.</p>
<p><strong>Windows-I</strong> Brings up the Settings charm, where you&#8217;ll find—among other things—the Power icon for shutting down the PC.</p>
<p><strong>Windows-PrtSc</strong> This handy new feature instantly captures a screenshot and saves it (in PNG format) to a Screenshots subfolder in your Pictures folder.</p>
<p><strong>Windows-X</strong> Pops up a decidedly old-school menu of Windows tools, including Power Options, Device Manager, Disk Management, and Command Prompt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2013/01/19/windows-8-short-cuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to do with depreciated functions</title>
		<link>http://www.withinweb.com/info/2013/01/14/what-to-do-with-depreciated-functions/</link>
		<comments>http://www.withinweb.com/info/2013/01/14/what-to-do-with-depreciated-functions/#comments</comments>
		<pubDate>Mon, 14 Jan 2013 09:01:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General PHP]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=904</guid>
		<description><![CDATA[If PHP returns messages saying that functions have depreciated, this is a warning to indicate that the code that you are running has functions in your installed version of PHP that will be removed at some time in the future by a later version of PHP.
This may occur if one day your web host suddenly [...]]]></description>
			<content:encoded><![CDATA[<p>If PHP returns messages saying that functions have depreciated, this is a warning to indicate that the code that you are running has functions in your installed version of PHP that will be removed at some time in the future by a later version of PHP.</p>
<p>This may occur if one day your web host suddenly decides to upgrade their servers to a new version of PHP.  You should make sure that you are on the mailing lists for your hosting company so that you will be notified of changes that may cause issues.</p>
<p>Depreciated functions still exist and you get warnings. So they work as expected.  However in a future version of PHP, they might disappear.  It&#8217;s a way to signal changes to users which have code based on an older PHP version.</p>
<p>Normally the deprecated features get removed after some time, but it&#8217;s not predictable how long this takes.</p>
<p>So if you see these warnings, update the code. Most often the PHP documentation has more information why something has been deprecated and what to do. Most often it&#8217;s an improvement.</p>
<p>Changing to a new version of PHP will mean that you will have access to the latest features of the language, however, it may mean that older versions of an application will either fail or display warning messages.</p>
<p>You have to decide if you want your application to operate over different PHP platforms &#8211; if you do then you have to code with common functions that are in all versions of PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2013/01/14/what-to-do-with-depreciated-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Twitter Bootstrap for Page Design</title>
		<link>http://www.withinweb.com/info/2012/12/25/use-triwtter-bootstrap-for-page-design/</link>
		<comments>http://www.withinweb.com/info/2012/12/25/use-triwtter-bootstrap-for-page-design/#comments</comments>
		<pubDate>Tue, 25 Dec 2012 16:23:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Design]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=899</guid>
		<description><![CDATA[If you are developing a new web application, then take a look at Twitter Bootstrap that provides a set of layouts and functions using JQuery Javascript and css.  Web page layout design is made easier by pre-set classes, menu drop downs can easily be added standardised layouts can be created.
The Bootstrap layouts are downloaded from
http://twitter.github.com/bootstrap/
]]></description>
			<content:encoded><![CDATA[<p>If you are developing a new web application, then take a look at Twitter Bootstrap that provides a set of layouts and functions using JQuery Javascript and css.  Web page layout design is made easier by pre-set classes, menu drop downs can easily be added standardised layouts can be created.</p>
<p>The Bootstrap layouts are downloaded from</p>
<p><a title="Twitter Bootstrap" href="http://twitter.github.com/bootstrap/" target="_blank">http://twitter.github.com/bootstrap/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2012/12/25/use-triwtter-bootstrap-for-page-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comparing two columns using SQL</title>
		<link>http://www.withinweb.com/info/2012/09/20/comparing-two-columns-using-sql/</link>
		<comments>http://www.withinweb.com/info/2012/09/20/comparing-two-columns-using-sql/#comments</comments>
		<pubDate>Thu, 20 Sep 2012 08:08:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL databases]]></category>

		<guid isPermaLink="false">http://www.withinweb.com/info/?p=888</guid>
		<description><![CDATA[If you have two tables which have columns with should contain the same data, and you want to check that the columns are the same, then it is possible compare the two columns using SQL.
If table1 has a column called users and table2 has a column called username, then to compare those two columns use [...]]]></description>
			<content:encoded><![CDATA[<p>If you have two tables which have columns with should contain the same data, and you want to check that the columns are the same, then it is possible compare the two columns using SQL.</p>
<p>If table1 has a column called users and table2 has a column called username, then to compare those two columns use something like :</p>
<blockquote><p>SELECT users FROM table1 WHERE username NOT IN (SELECT username from table2)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.withinweb.com/info/2012/09/20/comparing-two-columns-using-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
