In this foreach loop:
<?php
$x=array("one","two","three");
foreach ($x as $value)
{
echo $value . "<br>";
}
?>
How will you be able to access the string "two" individually outside the foreach loop? I don't need to print it, I just need to know how to access it.
$x[1]
and try to read manual.