<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/abc" -->
<rss version="0.92">
<channel>
	<title>NextDawn Programming Tutorials</title>
	<link>http://www.nextdawn.nl</link>
	<description>NextDawn is your online resource for learning to program. Tutorials on C, C++ , Opengl and DirectX.</description>
	<lastBuildDate>Tue, 09 Mar 2010 08:00:31 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>PHP Tutorial – $_REQUEST Function</title>
		<description><![CDATA[In previous tutorials we already looked at the PHP built-in $_GET function and $_POST function. In this tutorial we take a quick look at the PHP built-in $_REQUEST function.
The PHP built-in $_REQUEST function can be used with both the GET and POST methods.
Let&#8217;s take a look at an $_REQUEST function example:


&#60;html&#62;
&#60;body&#62;

&#60;form action="test.php" method="post"&#62;
Your name: &#60;input [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-request-function">PHP Tutorial – $_REQUEST Function</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-request-function</link>
			</item>
	<item>
		<title>PHP Tutorial – $_POST Function</title>
		<description><![CDATA[The PHP built-in $_POST function is used to collect values in a form (as name says, you do this with the method=”post”) The information send with POST method is invisible to others (the opposite of the GET method.)
Another difference between the $_GET function and the $_POST function is that the $_POST function doesn’t limit the [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-post-function">PHP Tutorial – $_POST Function</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-post-function</link>
			</item>
	<item>
		<title>PHP Tutorial – $_GET Function</title>
		<description><![CDATA[The PHP built-in $_GET function is used to collect values in a form (as name says, you do this with the method=”get”) You should remember that the information sent from a form with the GET method is visible to everyone, because the result is displayed in the address bar.
The $_GET function limits the number of [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-get-function">PHP Tutorial – $_GET Function</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-get-function</link>
			</item>
	<item>
		<title>PHP Tutorial – Form Handling</title>
		<description><![CDATA[In this PHP language tutorial we will look at PHP forms and form handling. We will use the PHP $_GET and $_POST variables to retrieve information from the HTML form. You use forms to get user input.
PHP Form Handling
You have to be aware of the following when dealing with HTML forms and PHP: any form [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-form-handling">PHP Tutorial – Form Handling</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-form-handling</link>
			</item>
	<item>
		<title>How to make a Calendar in C</title>
		<description><![CDATA[In the C tutorial “How to use Time and Date in C” some people asked questions in the comment section about determining dates and day of the week. That’s why we created this tutorial to show you what things you have to lookout for, such as leap years.
Gregorian Calendar and Leap Years
The Gregorian calendar is [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/how-to-make-a-calendar-in-c">How to make a Calendar in C</a></p>
]]></description>
		<link>http://www.nextdawn.nl/how-to-make-a-calendar-in-c</link>
			</item>
	<item>
		<title>PHP Tutorial – Functions Parameters and Return Values</title>
		<description><![CDATA[In a previous tutorial we looked at how to make your own PHP functions. In this PHP tutorial we will see how to use function parameters (for example passing a variable to a function) and function return values.
Functions Parameters
Parameters are specified after the function name, inside the parentheses.
Let’s look at a function parameter example:


&#60;html&#62;
&#60;body&#62;

&#60;?php
  [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-functions-parameters-and-return-values">PHP Tutorial – Functions Parameters and Return Values</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-functions-parameters-and-return-values</link>
			</item>
	<item>
		<title>PHP Tutorial – Functions</title>
		<description><![CDATA[The power of the PHP language is the large number of built-in functions (more than 700 built-in function and counting.) But of course it also possible to create your own functions. In this PHP tutorial we will create our own functions.
A function will only be executed if a function is called by another piece of [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-functions">PHP Tutorial – Functions</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-functions</link>
			</item>
	<item>
		<title>PHP Tutorial – foreach Loop</title>
		<description><![CDATA[The “foreach” loop gives PHP an easy way to iterate over arrays and can only be used on arrays.
Syntax
There are two syntaxes although the second is only a minor extension of the first.


foreach ($array as $value)
{
     code to be executed;
}



The second syntax:


foreach ($array as $key =&#62; $value)
{
     [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-foreach-loop">PHP Tutorial – foreach Loop</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-foreach-loop</link>
			</item>
	<item>
		<title>PHP Tutorial – For Loops</title>
		<description><![CDATA[The “for loop” execute a block of code a specified number of times while a specified condition is true.
Syntax


for (init; condition; increment)
{
    code to be executed;
}




The “for” loop holds three parameters. The init can be any piece of code that needs to be executed once at the beginning of the loop. In [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-for-loops">PHP Tutorial – For Loops</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-for-loops</link>
			</item>
	<item>
		<title>PHP Tutorial – do…while Loops</title>
		<description><![CDATA[The do&#8230;while statement will always execute the block of code once. After this first execute it will check the condition, and repeat the loop (keep executing) while the condition is true.
Syntax


do
{
     code to be executed;
}
while (condition);



do&#8230;while loop example
Ok, let’s look at an example:


&#60;html&#62;
&#60;body&#62;

&#60;?php
     $x=1;
    [...]<p><a href="http://www.nextdawn.nl">Original post by NextDawn.nl</a><br/><br/><a href="http://www.nextdawn.nl/php-tutorial-do-while-loops">PHP Tutorial – do…while Loops</a></p>
]]></description>
		<link>http://www.nextdawn.nl/php-tutorial-do-while-loops</link>
			</item>
</channel>
</rss>
