<?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>CS &#38; IT Solutions &#187; php</title>
	<atom:link href="http://blog.csatpk.com/category/web-development/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.csatpk.com</link>
	<description>Computer Scientists and IT Professionals Weblog</description>
	<lastBuildDate>Mon, 17 Oct 2011 10:58:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Domain Redirection Using a PHP Script</title>
		<link>http://blog.csatpk.com/2010/03/domain-redirection-using-a-php-script/</link>
		<comments>http://blog.csatpk.com/2010/03/domain-redirection-using-a-php-script/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 16:32:20 +0000</pubDate>
		<dc:creator>amanat</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[domain redirection]]></category>
		<category><![CDATA[Domain Redirection Using a PHP Script]]></category>
		<category><![CDATA[php script]]></category>

		<guid isPermaLink="false">http://blog.csatpk.com/?p=891</guid>
		<description><![CDATA[Q. How do I redirect my domain name using a php server side scripting under Apache web server? A. Under PHP you need to use header() to send a raw HTTP header. If you want to redirect a domain to some other URL, you can use the PHP script as below &#60;?php header("Location: http://example.com/"); exit(); [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2010/03/domain-redirection-using-a-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML:Iframe-inf removal Instruction</title>
		<link>http://blog.csatpk.com/2010/02/htmliframe-inf-removal-instruction/</link>
		<comments>http://blog.csatpk.com/2010/02/htmliframe-inf-removal-instruction/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 05:24:23 +0000</pubDate>
		<dc:creator>amanat</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[HTML:Iframe-inf]]></category>
		<category><![CDATA[iframe virus]]></category>
		<category><![CDATA[removal Instruction]]></category>
		<category><![CDATA[worm]]></category>

		<guid isPermaLink="false">http://blog.csatpk.com/?p=781</guid>
		<description><![CDATA[If your blog has been infected by the HTML:Iframe-inf  infection according to avast here are two scripts that can help you. First What is the HTML:Iframe infection? – Its just a line of text that is inserted at the end of every index.php and/or index.htm in your website. Nothing to freak out about but you [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2010/02/htmliframe-inf-removal-instruction/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP: Upload Files to the Server</title>
		<link>http://blog.csatpk.com/2009/06/php-upload-files-to-the-server/</link>
		<comments>http://blog.csatpk.com/2009/06/php-upload-files-to-the-server/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:35:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.csatpk.com/blog/?p=34</guid>
		<description><![CDATA[With PHP, it is simple to upload any file to your server. uploader.php $target_path = &#8220;uploads/&#8221;; $target_path = $target_path . basename( $_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { echo â€œThe file â€œ. basename( $_FILES['uploadedfile']['name']). â€ has been uploadedâ€; } else{ echo â€œThere was an error uploading the file, please try again!â€; }?&#62; The form used to apply this [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2009/06/php-upload-files-to-the-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Print the current year for copyright notices</title>
		<link>http://blog.csatpk.com/2009/06/php-print-the-current-year-for-copyright-notices/</link>
		<comments>http://blog.csatpk.com/2009/06/php-print-the-current-year-for-copyright-notices/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:33:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.csatpk.com/blog/?p=31</guid>
		<description><![CDATA[Hardcoding the year in a copyright notice is an easy way to get a blog or other website started, just placing the starting and ending years next to the copyright symbol. We have the very best of intentions to change this number right after the big ball drops in Times Square each year. Weâ€™re also [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2009/06/php-print-the-current-year-for-copyright-notices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Delete or expire a browser cookie</title>
		<link>http://blog.csatpk.com/2009/06/php-delete-or-expire-a-browser-cookie/</link>
		<comments>http://blog.csatpk.com/2009/06/php-delete-or-expire-a-browser-cookie/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:32:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.csatpk.com/blog/?p=28</guid>
		<description><![CDATA[Cookies may be created with an expiration time. It may become necessary to expire a cookie before the expiration time such as when a user logs out of a cookie-based authentication web application. This recipe describes expiring a cookie. Expiring a cookie uses the same command as creating a cookie. The cookie value is left [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2009/06/php-delete-or-expire-a-browser-cookie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Read a browser cookie value</title>
		<link>http://blog.csatpk.com/2009/06/php-read-a-browser-cookie-value/</link>
		<comments>http://blog.csatpk.com/2009/06/php-read-a-browser-cookie-value/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:31:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.csatpk.com/blog/?p=25</guid>
		<description><![CDATA[Once your web application has set a cookie in a userâ€™s browser, it is a simple matter to retrieve that value in subsequent page requests. This recipe describes reading a value from a cookie in PHP. After a cookie with a name of â€˜userâ€™ has been set in a previous page, the value can be [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2009/06/php-read-a-browser-cookie-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Set or create a simple browser cookie with setcookie</title>
		<link>http://blog.csatpk.com/2009/06/php-set-or-create-a-simple-browser-cookie-with-setcookie/</link>
		<comments>http://blog.csatpk.com/2009/06/php-set-or-create-a-simple-browser-cookie-with-setcookie/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:29:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.csatpk.com/blog/?p=22</guid>
		<description><![CDATA[Web applications overcome the lack of session support in the HTTP protocol primarily through the use of cookies. Transparent to the user and simple for the web developer, cookies provide the foundation of keeping up with who a web user is, where theyâ€™ve been, and what they had for lunch. Well, who and where, anyway. [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2009/06/php-set-or-create-a-simple-browser-cookie-with-setcookie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Rename or move a file on the server</title>
		<link>http://blog.csatpk.com/2009/06/php-rename-or-move-a-file-on-the-server/</link>
		<comments>http://blog.csatpk.com/2009/06/php-rename-or-move-a-file-on-the-server/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:28:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.csatpk.com/blog/?p=19</guid>
		<description><![CDATA[Working with server-side files with PHP adds a great deal of flexibility to some applications. A common scenario when working with files involves creating a temporary file through uploading or other means and then renaming this file to a permanent location. This recipe describes changing the name of an existing file using the PHP function [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2009/06/php-rename-or-move-a-file-on-the-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up PHP-ISAPI on Windows Server 2003</title>
		<link>http://blog.csatpk.com/2009/06/setting-up-php-isapi-on-windows-server-2003/</link>
		<comments>http://blog.csatpk.com/2009/06/setting-up-php-isapi-on-windows-server-2003/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:25:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.csatpk.com/blog/?p=16</guid>
		<description><![CDATA[Preface: I showed you here how to set up PHP using the CGI executable. Since then I&#8217;ve learnt that the ISAPI DLL may be faster and more secure, so this tutorial will show you how to set up the ISAPI DLL instead. Credit and thanks goes to Keith W. McCammon for setting this up on [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2009/06/setting-up-php-isapi-on-windows-server-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up PHP to work on Windows Server 2003</title>
		<link>http://blog.csatpk.com/2009/06/setting-up-php-to-work-on-windows-server-2003/</link>
		<comments>http://blog.csatpk.com/2009/06/setting-up-php-to-work-on-windows-server-2003/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:18:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.csatpk.com/blog/?p=13</guid>
		<description><![CDATA[he following things are pre-assumed: 1. You are running Windows Server 2003 2. IIS 6.0 3. You have installed PHP (http://www.php.net) to C:\PHP (installation issues are at the bottom of this page) 4. You are using default (unmodified) ACLs/Permissions Update: Tom McDermid has brought to my attention that in the PHP 5 line, the EXE [...]]]></description>
		<wfw:commentRss>http://blog.csatpk.com/2009/06/setting-up-php-to-work-on-windows-server-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

