<?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>PHP Archives - BinaryTides</title>
	<atom:link href="https://www.binarytides.com/category/programming/php-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.binarytides.com/category/programming/php-tutorials/</link>
	<description>News, Technology, Entertainment and more</description>
	<lastBuildDate>Tue, 02 May 2023 06:15:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>How to configure xdebug error messages to open file in Kate editor on Ubuntu</title>
		<link>https://www.binarytides.com/configure-xdebug-to-open-kate-on-ubuntu/</link>
					<comments>https://www.binarytides.com/configure-xdebug-to-open-kate-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 25 May 2021 14:18:23 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false">https://www.binarytides.com/?p=12227</guid>

					<description><![CDATA[<p>Xdebug is a powerful debugging and profiling tool for php that allows you to find and fix errors faster by showing the entire stack trace and source code file and line number. If you want your php development to be error free you should use something like xdebug right from the beginning. A very useful... <span class="read-more"><a href="https://www.binarytides.com/configure-xdebug-to-open-kate-on-ubuntu/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/configure-xdebug-to-open-kate-on-ubuntu/">How to configure xdebug error messages to open file in Kate editor on Ubuntu</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/configure-xdebug-to-open-kate-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Output buffering in php and apache</title>
		<link>https://www.binarytides.com/output-buffering-php-apache/</link>
					<comments>https://www.binarytides.com/output-buffering-php-apache/#respond</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Mon, 10 Jun 2013 04:51:59 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/?p=5346</guid>

					<description><![CDATA[<p>Output Buffering Output buffering is processing mechanism where the output being generated by a program is held in a place till its size reaches a limit or the generation is complete. Only after, will the output be send to its destination. In php for example, doing and echo generates some output. Now this output might... <span class="read-more"><a href="https://www.binarytides.com/output-buffering-php-apache/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/output-buffering-php-apache/">Output buffering in php and apache</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/output-buffering-php-apache/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Php &#8211; Do not rely on set_time_limit too much</title>
		<link>https://www.binarytides.com/php-set-time-limit/</link>
					<comments>https://www.binarytides.com/php-set-time-limit/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Wed, 05 Jun 2013 03:10:45 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/?p=5269</guid>

					<description><![CDATA[<p>Php set_time_limit Php has a function called set_time_limit which can be used to dynamically adjust the maximum execution time permitted to a script. It allows specifying the time in seconds and limits the script execution time to that many seconds. The set_time_limit function whenever called, effectively extends the script execution time by that many seconds.... <span class="read-more"><a href="https://www.binarytides.com/php-set-time-limit/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/php-set-time-limit/">Php &#8211; Do not rely on set_time_limit too much</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/php-set-time-limit/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to modify a SoapClient request in PHP</title>
		<link>https://www.binarytides.com/modify-soapclient-request-php/</link>
					<comments>https://www.binarytides.com/modify-soapclient-request-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 26 Mar 2013 08:24:51 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4357</guid>

					<description><![CDATA[<p>SOAP and PHP SOAP is a protocol to exchange objects over http. It is used to implement apis and the data being exchanged is in xml format. Sometimes it might be required to modify the soap request to add custom http headers for example. Since SoapClient is a class, it can be extended and the... <span class="read-more"><a href="https://www.binarytides.com/modify-soapclient-request-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/modify-soapclient-request-php/">How to modify a SoapClient request in PHP</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/modify-soapclient-request-php/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Php &#8211; Fix &#8220;Input is not proper UTF-8, indicate encoding&#8221; error when loading xml</title>
		<link>https://www.binarytides.com/php-fix-input-is-not-proper-utf-8-indicate-encoding-error-when-loading-xml/</link>
					<comments>https://www.binarytides.com/php-fix-input-is-not-proper-utf-8-indicate-encoding-error-when-loading-xml/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 26 Mar 2013 05:25:22 +0000</pubDate>
				<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4352</guid>

					<description><![CDATA[<p>When loading xml files in php through simplexml_load_string or domDocument class, sometimes an error like this might popup Warning: DOMDocument::loadXML(): Input is not proper UTF-8, indicate encoding ! OR Warning: simplexml_load_string(): Entity: line 93: parser error : Input is not proper UTF-8, indicate encoding ! The error occurs when the xml has some invalid characters... <span class="read-more"><a href="https://www.binarytides.com/php-fix-input-is-not-proper-utf-8-indicate-encoding-error-when-loading-xml/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/php-fix-input-is-not-proper-utf-8-indicate-encoding-error-when-loading-xml/">Php &#8211; Fix &#8220;Input is not proper UTF-8, indicate encoding&#8221; error when loading xml</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/php-fix-input-is-not-proper-utf-8-indicate-encoding-error-when-loading-xml/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Php &#8211; How to fetch gzipped content over HTTP with file_get_contents</title>
		<link>https://www.binarytides.com/php-fetch-gzipped-content-over-http-with-file_get_contents/</link>
					<comments>https://www.binarytides.com/php-fetch-gzipped-content-over-http-with-file_get_contents/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Sun, 24 Mar 2013 11:28:57 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4312</guid>

					<description><![CDATA[<p>The file_get_contents function is often used to quickly fetch a http url or resource. Usage is very simple and appears like this $content = file_get_contents(&#039;http://www.google.com/&#039;); However the file_get_contents does not get the contents compressed. It requests the server to send everything in plain text format. Most websites are capable of serving compressed content, if they... <span class="read-more"><a href="https://www.binarytides.com/php-fetch-gzipped-content-over-http-with-file_get_contents/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/php-fetch-gzipped-content-over-http-with-file_get_contents/">Php &#8211; How to fetch gzipped content over HTTP with file_get_contents</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/php-fetch-gzipped-content-over-http-with-file_get_contents/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Socket Programming with Streams in Php &#8211; How to Code Client and Server</title>
		<link>https://www.binarytides.com/socket-programming-streams-php/</link>
					<comments>https://www.binarytides.com/socket-programming-streams-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Sat, 23 Mar 2013 13:56:54 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4289</guid>

					<description><![CDATA[<p>Socket Programming Socket programming involves connecting to remote machines on LAN or over the internet using ip addresses and port number. For example google.com has an ip "173.194.36.3" and runs http server on port 80. So a socket application can connect to that ip address on that particular port number and start data communication. Socket... <span class="read-more"><a href="https://www.binarytides.com/socket-programming-streams-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/socket-programming-streams-php/">Socket Programming with Streams in Php &#8211; How to Code Client and Server</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/socket-programming-streams-php/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Parse the user agent with ua-parser in php &#8211; detect browser, os and device</title>
		<link>https://www.binarytides.com/parse-the-user-agent-with-ua-parser-in-php-detect-browser-os-and-device/</link>
					<comments>https://www.binarytides.com/parse-the-user-agent-with-ua-parser-in-php-detect-browser-os-and-device/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Fri, 22 Mar 2013 15:55:48 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4283</guid>

					<description><![CDATA[<p>In your web application you might need to parse the user's user-agent string to find out the browser/OS/device being used. This is necessary specially when your webapp tries to adapt to the user's platform in a better way. For example a different layout for mobile device or restricted features/graceful degradation on a non supporting browser.... <span class="read-more"><a href="https://www.binarytides.com/parse-the-user-agent-with-ua-parser-in-php-detect-browser-os-and-device/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/parse-the-user-agent-with-ua-parser-in-php-detect-browser-os-and-device/">Parse the user agent with ua-parser in php &#8211; detect browser, os and device</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/parse-the-user-agent-with-ua-parser-in-php-detect-browser-os-and-device/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Validate domain name using filter_var function in php</title>
		<link>https://www.binarytides.com/validate-domain-name-filter_var-function-php/</link>
					<comments>https://www.binarytides.com/validate-domain-name-filter_var-function-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Thu, 21 Mar 2013 12:24:11 +0000</pubDate>
				<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[php snippets]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4280</guid>

					<description><![CDATA[<p>The filter_var function of php is capable of validating many things like emails, urls, ip addresses etc. It does not have a direct option to validate a domain name however. So I coded up this little snippet that the filter_var function with a little tweak so that it can validate domain names as well. function... <span class="read-more"><a href="https://www.binarytides.com/validate-domain-name-filter_var-function-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/validate-domain-name-filter_var-function-php/">Validate domain name using filter_var function in php</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/validate-domain-name-filter_var-function-php/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>How to download a file using Curl in PHP &#8211; Code Snippet</title>
		<link>https://www.binarytides.com/download-a-file-using-curl-in-php/</link>
					<comments>https://www.binarytides.com/download-a-file-using-curl-in-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 19 Mar 2013 12:08:03 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php snippets]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4276</guid>

					<description><![CDATA[<p>Download a File using Curl Here is a quick curl snippet for php, that can download a remote file and save it. &#60;?php set_time_limit(0); // File to save the contents to $fp = fopen (&#039;files2.tar&#039;, &#039;w+&#039;); $url = &#34;http://localhost/files.tar&#34;; // Here is the file we are downloading, replace spaces with %20 $ch = curl_init(str_replace(&#34; &#34;,&#34;%20&#34;,$url));... <span class="read-more"><a href="https://www.binarytides.com/download-a-file-using-curl-in-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/download-a-file-using-curl-in-php/">How to download a file using Curl in PHP &#8211; Code Snippet</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/download-a-file-using-curl-in-php/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to Convert HTML to PDF in Php using Mpdf Library</title>
		<link>https://www.binarytides.com/convert-html-to-pdf-in-php-using-mpdf/</link>
					<comments>https://www.binarytides.com/convert-html-to-pdf-in-php-using-mpdf/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 12 Mar 2013 14:00:38 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4251</guid>

					<description><![CDATA[<p>Html to pdf If your php application needs to generate some kind of pdf report then the simplest approach would be to generate the report as an html and then convert it to pdf using some library. Plenty of libraries are available that can convert html to pdf in php. To name a few -... <span class="read-more"><a href="https://www.binarytides.com/convert-html-to-pdf-in-php-using-mpdf/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/convert-html-to-pdf-in-php-using-mpdf/">How to Convert HTML to PDF in Php using Mpdf Library</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/convert-html-to-pdf-in-php-using-mpdf/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to compress images in Php using GD Library</title>
		<link>https://www.binarytides.com/compress-images-php-using-gd/</link>
					<comments>https://www.binarytides.com/compress-images-php-using-gd/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 12 Mar 2013 11:17:49 +0000</pubDate>
				<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4249</guid>

					<description><![CDATA[<p>Php applications might need to do some image processing if they are allowing users to upload pictures of somekind. This can include cropping, watermarking, compressing etc. To compress an image the quality needs to be adjusted. Here is a code example of how to do it: function compress_image($src, $dest , $quality) { $info = getimagesize($src);... <span class="read-more"><a href="https://www.binarytides.com/compress-images-php-using-gd/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/compress-images-php-using-gd/">How to compress images in Php using GD Library</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/compress-images-php-using-gd/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How to extract tar.gz archives in Php</title>
		<link>https://www.binarytides.com/extract-tar-gz-archives-php/</link>
					<comments>https://www.binarytides.com/extract-tar-gz-archives-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 12 Mar 2013 10:52:28 +0000</pubDate>
				<category><![CDATA[Php Snippets]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4243</guid>

					<description><![CDATA[<p>In a previous article we learned how to . Now lets do the reverse, that is extract tar.gz archives and get the files out. The code to extract a tar.gz archive is very simple and uses PharData class. Here is an example // decompress from gz $p = new PharData(&#039;files.tar.gz&#039;); $p-&#62;decompress(); // creates files.tar //... <span class="read-more"><a href="https://www.binarytides.com/extract-tar-gz-archives-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/extract-tar-gz-archives-php/">How to extract tar.gz archives in Php</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/extract-tar-gz-archives-php/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create tar archives in Php with PharData</title>
		<link>https://www.binarytides.com/how-to-create-tar-archives-in-php/</link>
					<comments>https://www.binarytides.com/how-to-create-tar-archives-in-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Mon, 11 Mar 2013 16:04:47 +0000</pubDate>
				<category><![CDATA[Php Snippets]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4228</guid>

					<description><![CDATA[<p>Tar is a common archive format used on linux. Alone it is just an archiving format, that is it can only pack multiple files together but not compress them. When combined with gzip or bzip2 files are compressed as well. Then it becomes a .tar.gz which is actually a gzip compressed tar file. Php has... <span class="read-more"><a href="https://www.binarytides.com/how-to-create-tar-archives-in-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/how-to-create-tar-archives-in-php/">How to Create tar archives in Php with PharData</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/how-to-create-tar-archives-in-php/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to use proxy with curl in Php</title>
		<link>https://www.binarytides.com/use-proxy-with-curl-php/</link>
					<comments>https://www.binarytides.com/use-proxy-with-curl-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Mon, 11 Mar 2013 14:24:10 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4224</guid>

					<description><![CDATA[<p>Proxy with Curl Curl is a very useful library for transferring data over various protocols like http, ftp, https etc. In other words curl can be used to programatically download a web page, or upload file to ftp etc. It also supports using a proxy. This means that curl requests can go through a proxy... <span class="read-more"><a href="https://www.binarytides.com/use-proxy-with-curl-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/use-proxy-with-curl-php/">How to use proxy with curl in Php</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/use-proxy-with-curl-php/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Convert excel to csv in php</title>
		<link>https://www.binarytides.com/convert-excel-to-csv-in-php/</link>
					<comments>https://www.binarytides.com/convert-excel-to-csv-in-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Mon, 11 Mar 2013 14:03:45 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4220</guid>

					<description><![CDATA[<p>When working with data import and export for example, file formats like csv and excel are commonly used. Data can be exported to csv format and imported elsewhere. Also data might be entered manually in an excel file and then imported in the database. So there might be a need to convert excel files to... <span class="read-more"><a href="https://www.binarytides.com/convert-excel-to-csv-in-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/convert-excel-to-csv-in-php/">Convert excel to csv in php</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/convert-excel-to-csv-in-php/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Generate qrcode and pdf417 barcodes in php with tcpdf</title>
		<link>https://www.binarytides.com/qrcode-pdf417-barcodes-php-tcpdf/</link>
					<comments>https://www.binarytides.com/qrcode-pdf417-barcodes-php-tcpdf/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Sun, 10 Mar 2013 11:18:39 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4215</guid>

					<description><![CDATA[<p>Tcpdf is a pdf creation library for php that is written in pure php and works without the need of any external library. It also has the feature to generate 2d barcodes like qrcode and pdf417. The 2d barcodes can store much more information than the 2d ones like code39 and ISBN. It is recommended... <span class="read-more"><a href="https://www.binarytides.com/qrcode-pdf417-barcodes-php-tcpdf/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/qrcode-pdf417-barcodes-php-tcpdf/">Generate qrcode and pdf417 barcodes in php with tcpdf</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/qrcode-pdf417-barcodes-php-tcpdf/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Php &#8211; Output content to browser in realtime without buffering</title>
		<link>https://www.binarytides.com/php-output-content-browser-realtime-buffering/</link>
					<comments>https://www.binarytides.com/php-output-content-browser-realtime-buffering/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Fri, 08 Mar 2013 07:16:02 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=3825</guid>

					<description><![CDATA[<p>Consider a long running php script that does many tasks and after each task it outputs the status. echo &#039;Task 1 complete&#039;; .... some delay ... echo &#039;Task 2 complete&#039;; .... more delay and more tasks ... Now for such scripts it may be important to load the contents in browser as quickly as they... <span class="read-more"><a href="https://www.binarytides.com/php-output-content-browser-realtime-buffering/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/php-output-content-browser-realtime-buffering/">Php &#8211; Output content to browser in realtime without buffering</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/php-output-content-browser-realtime-buffering/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
		<item>
		<title>Monitor progress of long running Php scripts with Html5 server sent events</title>
		<link>https://www.binarytides.com/monitor-progress-long-running-php-scripts-html5-server-sent-events/</link>
					<comments>https://www.binarytides.com/monitor-progress-long-running-php-scripts-html5-server-sent-events/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Wed, 06 Mar 2013 11:36:49 +0000</pubDate>
				<category><![CDATA[Html5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=3783</guid>

					<description><![CDATA[<p>Server sent events When running a long serverside task inside a web application it becomes very useful, if not necessary to report the progress of that task in realtime to the clientside, that is the browser. Earlier there was no easy way to do this and hacks had to be constructed to achieve such a... <span class="read-more"><a href="https://www.binarytides.com/monitor-progress-long-running-php-scripts-html5-server-sent-events/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/monitor-progress-long-running-php-scripts-html5-server-sent-events/">Monitor progress of long running Php scripts with Html5 server sent events</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/monitor-progress-long-running-php-scripts-html5-server-sent-events/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>Get the play time and bitrate of an mp3 in php</title>
		<link>https://www.binarytides.com/get-play-time-bitrate-mp3-php/</link>
					<comments>https://www.binarytides.com/get-play-time-bitrate-mp3-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Sat, 16 Feb 2013 16:11:59 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=3772</guid>

					<description><![CDATA[<p>If your php application is processing media files like mp3, then it might need to find details of the mp3 file like its playtime, bitrate, encoder etc. There is a very useful php library called Getid3 that can extract information from mp3 files. Its written in pure php and does not have any dependencies. Needs... <span class="read-more"><a href="https://www.binarytides.com/get-play-time-bitrate-mp3-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/get-play-time-bitrate-mp3-php/">Get the play time and bitrate of an mp3 in php</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/get-play-time-bitrate-mp3-php/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
