Quantcast
Channel: WP Woodshed
Viewing all articles
Browse latest Browse all 16

Looping Statements in PHP: The Incrementing Operator (i++)

$
0
0

It could also be written like this:

<?php 
	if($i % 2 == 0) { 
		echo '</div><div class="post-row">'; 
	} 
	$i++; 
	endwhile; 
	echo '</div>'; 
?>

 


Viewing all articles
Browse latest Browse all 16

Trending Articles