Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

https://pt.stackoverflow.com/q/238483/101

<?php
$adultos = array( "a", "b", "c" );
$i = 1;
foreach ($adultos as $adulto):
	echo "<strong>Quarto " . $i++ . "</strong><br>";
	echo "Adultos: " . $adulto . "<br>";
endforeach;
for ($i = 0; $i < count($adultos); $i++) {
	echo "<strong>Quarto ". $i++ ."</strong><br>";
	echo "Adultos: " . $adultos[$i] . "<br>";
}

//https://pt.stackoverflow.com/q/238483/101

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.