<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
 <channel>
  <title>Program With Gio - RSS Feed</title>
  <link>https://www.webhostingchannel.com/category.php?cat=program-with-gio</link>
  <description>Program With Gio</description>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>Working With File System In PHP - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=6a7be587a</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/6a7be587a-1.jpg"  /></p>In this PHP tutorial, you will learn how to work with files & filesystem in PHP. You will learn how to create & delete directories, open files, put content, read content, read files line by line, read CSV files, some tips & things to be aware of such as return value caching for some of the file related functions.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="592"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>Working With File System In PHP - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/6a7be587a-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn how to work with files &amp; filesystem in PHP. You will learn how to create &amp; delete directories, open files, put content, read content, read files line by line, read CSV files, some tips &amp; things to be aware of such as return value caching for some of the file related functions.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/6a7be587a-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=6a7be587a</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>Basic Apache Webserver Configuration &amp; Virtual Hosts - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=76edac337</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/76edac337-1.jpg"  /></p>In this PHP tutorial, you will learn the basics of apache configuration files & how to work with them. You will also learn how to rewrite URLs using .htaccess files & the difference between .htaccess & httpd.conf files and why you should not use .htaccess files.<br />
<br />
NOTE<br />
At 13:20 I copied htaccess content into vhosts config, if it does not work for you or you are setting rewrite rules globally then try the following instead:<br />
<br />
RewriteCond %{LA-U:REQUEST_FILENAME} !-f<br />
RewriteCond %{LA-U:REQUEST_FILENAME} !-d<br />
<br />
The reason for it is because LA-U (look-ahead URL based) is needed for the proper value of REQUEST_FILENAME in some cases. More info on it can be read on https://httpd.apache.org/docs/current/mod/mod_rewrite.html (search for LA-U)<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="859"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>Basic Apache Webserver Configuration &amp;amp; Virtual Hosts - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/76edac337-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn the basics of apache configuration files &amp; how to work with them. You will also learn how to rewrite URLs using .htaccess files &amp; the difference between .htaccess &amp; httpd.conf files and why you should not use .htaccess files.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
NOTE&amp;lt;br /&amp;gt;
At 13:20 I copied htaccess content into vhosts config, if it does not work for you or you are setting rewrite rules globally then try the following instead:&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
RewriteCond %{LA-U:REQUEST_FILENAME} !-f&amp;lt;br /&amp;gt;
RewriteCond %{LA-U:REQUEST_FILENAME} !-d&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
The reason for it is because LA-U (look-ahead URL based) is needed for the proper value of REQUEST_FILENAME in some cases. More info on it can be read on https://httpd.apache.org/docs/current/mod/mod_rewrite.html (search for LA-U)&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/76edac337-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=76edac337</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Error Handling &amp; Error Handlers - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=2a84ac7a3</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/2a84ac7a3-1.jpg"  /></p>In this PHP tutorial, you will learn different types of errors in PHP as well as the basics of error handling. You will also learn how to trigger errors manually. This video is just an introduction to error handling to prepare you for a more advanced & in-depth video that will be coming out about error handling that includes exceptions in the second section of this course.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="450"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Error Handling &amp;amp; Error Handlers - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/2a84ac7a3-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn different types of errors in PHP as well as the basics of error handling. You will also learn how to trigger errors manually. This video is just an introduction to error handling to prepare you for a more advanced &amp; in-depth video that will be coming out about error handling that includes exceptions in the second section of this course.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/2a84ac7a3-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=2a84ac7a3</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>How To Work With PHPs Configuration File - PHP.INI - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=475a379ac</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/475a379ac-1.jpg"  /></p>In this PHP tutorial, you will learn what the PHP configuration file is, what are some of the important settings & how to change them. The php.ini file is the settings or the configuration file for your PHP, each version can have its own php.ini. This file allows you to control how certain things in PHP work. You are able to also change some of the configuration settings at runtime by using ini_set.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="446"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>How To Work With PHPs Configuration File - PHP.INI - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/475a379ac-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn what the PHP configuration file is, what are some of the important settings &amp; how to change them. The php.ini file is the settings or the configuration file for your PHP, each version can have its own php.ini. This file allows you to control how certain things in PHP work. You are able to also change some of the configuration settings at runtime by using ini_set.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/475a379ac-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=475a379ac</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>How To Work With Arrays In PHP - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=af4867dd9</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/af4867dd9-1.jpg"  /></p>In this PHP tutorial, you will learn how to work with arrays in PHP using various built-in array functions. You will learn how to merge, sort, map, filter, search, reduce, combine, chunk, destructure arrays & more.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="909"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>How To Work With Arrays In PHP - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/af4867dd9-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn how to work with arrays in PHP using various built-in array functions. You will learn how to merge, sort, map, filter, search, reduce, combine, chunk, destructure arrays &amp; more.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/af4867dd9-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=af4867dd9</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>How To Work With Dates &amp; Time Zones - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=aa932c51e</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/aa932c51e-1.jpg"  /></p>In this PHP tutorial, you will learn how to work with dates & times in PHP, how to change time zones & various built-in date functions.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="369"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>How To Work With Dates &amp;amp; Time Zones - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/aa932c51e-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn how to work with dates &amp; times in PHP, how to change time zones &amp; various built-in date functions.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/aa932c51e-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=aa932c51e</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>Variable, Anonymous, Callable, Closure &amp; Arrow Functions In PHP - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=a106be6a7</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/a106be6a7-1.jpg"  /></p>In this PHP tutorial, you will learn the differences between variable functions, anonymous functions, callbacks & closures, and arrow functions. You will also learn another type in PHP called callable type.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="518"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>Variable, Anonymous, Callable, Closure &amp;amp; Arrow Functions In PHP - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/a106be6a7-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn the differences between variable functions, anonymous functions, callbacks &amp; closures, and arrow functions. You will also learn another type in PHP called callable type.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/a106be6a7-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=a106be6a7</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Variable Scopes - Static Variables - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=f505d3532</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/f505d3532-1.jpg"  /></p>In this PHP tutorial, you will learn what variable scope is, global & local scopes, & more. You will also learn how you can use static variables to optimize your code & cache the value of expensive function calls.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="341"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Variable Scopes - Static Variables - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/f505d3532-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn what variable scope is, global &amp; local scopes, &amp; more. You will also learn how you can use static variables to optimize your code &amp; cache the value of expensive function calls.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/f505d3532-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=f505d3532</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Function Parameters - Named Arguments - Variadic Functions &amp; Unpacking - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=134e08159</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/134e08159-1.jpg"  /></p>In this PHP tutorial, you will learn how to define parameters & pass arguments. You will learn how to unpack arguments using the splat operator & how to capture passed arguments into a single array using the splat operator. You will learn what the named arguments feature is and how to use it with examples. The named arguments feature was added in PHP 8.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:15 +0000</pubDate>
   <media:content medium="video" duration="725"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Function Parameters - Named Arguments - Variadic Functions &amp;amp; Unpacking - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/134e08159-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn how to define parameters &amp; pass arguments. You will learn how to unpack arguments using the splat operator &amp; how to capture passed arguments into a single array using the splat operator. You will learn what the named arguments feature is and how to use it with examples. The named arguments feature was added in PHP 8.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/134e08159-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=134e08159</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>How To Create Functions In PHP - Functions Tutorial - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=a9c939ec4</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/a9c939ec4-1.jpg"  /></p>In this PHP tutorial, you will learn what functions are & how to create them. In addition to creating functions, you will learn about type hinting, return types, inner functions, union types & so on. In the next couple of videos, you will learn a lot more about functions & how you can use them properly so stay tuned.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="482"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>How To Create Functions In PHP - Functions Tutorial - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/a9c939ec4-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn what functions are &amp; how to create them. In addition to creating functions, you will learn about type hinting, return types, inner functions, union types &amp; so on. In the next couple of videos, you will learn a lot more about functions &amp; how you can use them properly so stay tuned.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/a9c939ec4-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=a9c939ec4</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>How To Include Files In PHP - Include and Require - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=66de1695a</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/66de1695a-1.jpg"  /></p>In this PHP tutorial, you will learn how to include PHP files with some actual practical examples. You will learn how to use output buffering to render a PHP file into a string using, how files are actually being loaded & located, the differences between require, include, require_once & include_once, & how to use include statements for code reusability. You will also learn a few things to be aware of when including files because again this flexibility & ease of use comes at a cost of possible bugs.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="492"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>How To Include Files In PHP - Include and Require - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/66de1695a-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn how to include PHP files with some actual practical examples. You will learn how to use output buffering to render a PHP file into a string using, how files are actually being loaded &amp; located, the differences between require, include, require_once &amp; include_once, &amp; how to use include statements for code reusability. You will also learn a few things to be aware of when including files because again this flexibility &amp; ease of use comes at a cost of possible bugs.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/66de1695a-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=66de1695a</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Return, Declare &amp; Tickable Statements - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=03ab0dbbc</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/03ab0dbbc-1.jpg"  /></p>In this PHP tutorial, you will learn about the declare & return statements. When the return is used within a function it stops the execution of the function & returns the value of the expression it's given, if no expression is given it will return null. If the return is used in the global scope (out of a function) then the execution of that script will end & will return the value of the expression or null if no expression is given. Declare statement is used to set execution directives, there are three directives: ticks directive, encoding directive & strict_types directive. <br />
<br />
The reason I did not talk about the goto statement is that it just makes code harder to maintain & read. You can use other control structures to achieve the same result. If you still want to know how to use it, here is the link to the docs: https://www.php.net/manual/en/control-structures.goto.php<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="358"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Return, Declare &amp;amp; Tickable Statements - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/03ab0dbbc-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn about the declare &amp; return statements. When the return is used within a function it stops the execution of the function &amp; returns the value of the expression it&apos;s given, if no expression is given it will return null. If the return is used in the global scope (out of a function) then the execution of that script will end &amp; will return the value of the expression or null if no expression is given. Declare statement is used to set execution directives, there are three directives: ticks directive, encoding directive &amp; strict_types directive. &amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
The reason I did not talk about the goto statement is that it just makes code harder to maintain &amp; read. You can use other control structures to achieve the same result. If you still want to know how to use it, here is the link to the docs: https://www.php.net/manual/en/control-structures.goto.php&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/03ab0dbbc-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=03ab0dbbc</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Match Expression - Match vs Switch - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=f08f999cd</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/f08f999cd-1.jpg"  /></p>In this PHP tutorial, you will learn about the newly added feature the match expression which was introduced in PHP 8. Match expression makes a block for switch statements much shorter & easier to read. You'll learn about the main differences between the match expression & switch statements with a real example. Do you like the match expression? Let me know your thoughts in the comments.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="308"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Match Expression - Match vs Switch - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/f08f999cd-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial, you will learn about the newly added feature the match expression which was introduced in PHP 8. Match expression makes a block for switch statements much shorter &amp; easier to read. You&apos;ll learn about the main differences between the match expression &amp; switch statements with a real example. Do you like the match expression? Let me know your thoughts in the comments.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/f08f999cd-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=f08f999cd</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Switch Statement - Switch vs if/else statement - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=892152762</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/892152762-1.jpg"  /></p>In this PHP tutorial you will learn about the switch statement in PHP, how to use it with examples, concerns when using switch statement within loops & the differences between the series of if statements & the switch statement. The switch statement is similar to if, elseif, else statements. The main difference is that the switch statement takes a single expression & compares its value against multiple values (cases).<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="490"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Switch Statement - Switch vs if/else statement - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/892152762-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this PHP tutorial you will learn about the switch statement in PHP, how to use it with examples, concerns when using switch statement within loops &amp; the differences between the series of if statements &amp; the switch statement. The switch statement is similar to if, elseif, else statements. The main difference is that the switch statement takes a single expression &amp; compares its value against multiple values (cases).&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/892152762-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=892152762</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Loops Tutorial - Break &amp; Continue Statements - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=dba0af1e1</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/dba0af1e1-1.jpg"  /></p>Loops are simple but there are some important things that you need to be aware of when working with them, such as performance, things to be aware of when working with references, how to break out of nested loops, how to handle infinite loops & so on. Loop is basically a control structure that allows you to execute a block of code or multiple statements N times until a given condition evaluates to false or you manually break out of the loop. In this video, we cover while loops, do-while loops, for loops & foreach loops with examples on iterating over strings, arrays, and so on.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="744"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Loops Tutorial - Break &amp;amp; Continue Statements - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/dba0af1e1-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;Loops are simple but there are some important things that you need to be aware of when working with them, such as performance, things to be aware of when working with references, how to break out of nested loops, how to handle infinite loops &amp; so on. Loop is basically a control structure that allows you to execute a block of code or multiple statements N times until a given condition evaluates to false or you manually break out of the loop. In this video, we cover while loops, do-while loops, for loops &amp; foreach loops with examples on iterating over strings, arrays, and so on.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/dba0af1e1-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=dba0af1e1</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>Control Structures in PHP - Conditional Statements - if/else - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=d0ecf6f35</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/d0ecf6f35-1.jpg"  /></p>It's time to learn control structures which you will use a lot in PHP and in any programming language. Control structures allow you to group multiple statements & execute them after a certain condition is met or keep executing them until some condition is met. They basically allow you to control the flow of the code execution. The first control structure that is covered in this video is if, else, & elseif conditional statements.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="313"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>Control Structures in PHP - Conditional Statements - if/else - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/d0ecf6f35-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;It&apos;s time to learn control structures which you will use a lot in PHP and in any programming language. Control structures allow you to group multiple statements &amp; execute them after a certain condition is met or keep executing them until some condition is met. They basically allow you to control the flow of the code execution. The first control structure that is covered in this video is if, else, &amp; elseif conditional statements.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/d0ecf6f35-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=d0ecf6f35</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Operator Precedence &amp; Associativity - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=cc3590b2f</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/cc3590b2f-1.jpg"  /></p>Operator precedence & associativity are very important topics to know because it can result in unexpected output when you combine multiple operators in an expression. Hoping that this video makes it clear how operations are grouped & what operator precedence & associativity are & how it works.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="327"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Operator Precedence &amp;amp; Associativity - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/cc3590b2f-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;Operator precedence &amp; associativity are very important topics to know because it can result in unexpected output when you combine multiple operators in an expression. Hoping that this video makes it clear how operations are grouped &amp; what operator precedence &amp; associativity are &amp; how it works.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/cc3590b2f-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=cc3590b2f</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Operators Part 2 - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=79702a646</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/79702a646-1.jpg"  /></p>We continue with the rest of the operators in this video where you will learn error control operator (@), pre & post increment (++) & decrement (--) operators, array operators (+, ==, ===, !=, !==), logical operators (&&, ||, !, and, or, xor) with explanation on what short-circuiting is & how it works & bitwise operators (& | ^ ~) also explaining how to use bitwise operators & how it works.<br />
<br />
In addition to the basic explanation of how to use these operators & how they work I also talk about some important things so I recommend watching the video fully.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:14 +0000</pubDate>
   <media:content medium="video" duration="973"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Operators Part 2 - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/79702a646-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;We continue with the rest of the operators in this video where you will learn error control operator (@), pre &amp; post increment (++) &amp; decrement (--) operators, array operators (+, ==, ===, !=, !==), logical operators (&amp;&amp;, ||, !, and, or, xor) with explanation on what short-circuiting is &amp; how it works &amp; bitwise operators (&amp; | ^ ~) also explaining how to use bitwise operators &amp; how it works.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
In addition to the basic explanation of how to use these operators &amp; how they work I also talk about some important things so I recommend watching the video fully.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/79702a646-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=79702a646</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>PHP Operators Part 1 - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=d017b1563</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/d017b1563-1.jpg"  /></p>In this video, you will learn all about Arithmetic, String, Comparison & Assignment operators. You will learn things beyond basic because, in my opinion, things I discuss in this video are important to know which is why I decided to split it into two videos to not make it too long. The second video will cover the rest of the operators.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:13 +0000</pubDate>
   <media:content medium="video" duration="867"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>PHP Operators Part 1 - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/d017b1563-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;In this video, you will learn all about Arithmetic, String, Comparison &amp; Assignment operators. You will learn things beyond basic because, in my opinion, things I discuss in this video are important to know which is why I decided to split it into two videos to not make it too long. The second video will cover the rest of the operators.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/d017b1563-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=d017b1563</guid>
  </item>
  <item xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
   <title>What Are Expressions In PHP &amp; How They Are Evaluated - Full PHP 8 Tutorial</title>
   <link>https://www.webhostingchannel.com/watch.php?vid=f96f6092f</link>
   <description><![CDATA[<p><img src="https://www.webhostingchannel.com/uploads/thumbs/f96f6092f-1.jpg"  /></p>It's time to move on to expressions. Think of it as a new chapter in this course. Up until now, you have learned how to get PHP up & running, basic syntax, variables, constants, data types, casting & so on. However, almost everything in PHP is an expression & you've already seen expressions in previous videos. Let's do a quick review of what expressions are & what will be the topics of the upcoming videos.<br />
<br />
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL<br />
]]></description>
   <pubDate>Wed, 26 Feb 2025 20:00:13 +0000</pubDate>
   <media:content medium="video" duration="158"  type="video/x-flv"  height="401" width="638" >
   <media:player url="https://www.webhostingchannel.com/players/flowplayer2/flowplayer.swf" />
   <media:title>What Are Expressions In PHP &amp;amp; How They Are Evaluated - Full PHP 8 Tutorial</media:title>
   <media:description>&amp;lt;![CDATA[&amp;lt;p&amp;gt;&amp;lt;img src=&quot;https://www.webhostingchannel.com/uploads/thumbs/f96f6092f-1.jpg&quot;  /&amp;gt;&amp;lt;/p&amp;gt;It&apos;s time to move on to expressions. Think of it as a new chapter in this course. Up until now, you have learned how to get PHP up &amp; running, basic syntax, variables, constants, data types, casting &amp; so on. However, almost everything in PHP is an expression &amp; you&apos;ve already seen expressions in previous videos. Let&apos;s do a quick review of what expressions are &amp; what will be the topics of the upcoming videos.&amp;lt;br /&amp;gt;
&amp;lt;br /&amp;gt;
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL&amp;lt;br /&amp;gt;
]]&amp;gt;</media:description>
   <media:thumbnail url="https://www.webhostingchannel.com/uploads/thumbs/f96f6092f-1.jpg" />
   </media:content>
   <guid>https://www.webhostingchannel.com/watch.php?vid=f96f6092f</guid>
  </item>
 </channel>
</rss>