Læse fra en Array
Hejjeg er ny indenfor PHP, derfor har jeg et problem med a skrive værdier ud fra en array. Jeg vil gerne have at værdierne bliver skrevet under der hvor der står "result:", men jeg kan bare ikke få nogle værdier frem. Jeg ved ikke om jeg placere koden forkert så den ikke bliver eksekveret eller måske et helt andet problem. Jeg sætter lige min kode ind her:
<html>
<body>
<form action="index2.php" method="post">
<table border="1">
<tr>
<td colspan="4"><b>Exercise 2</b></td>
</tr>
<tr>
<td>Country 1</td>
<td>code: <input type="text" name="code1" value=""/></td>
<td>name: <input type="text" name="country1" value=""/> </td>
</tr>
<tr>
<td>Country 2</td>
<td>code: <input type="text" name="code2" value=""/></td>
<td>name: <input type="text" name="country2" value=""/></td>
</tr>
<tr>
<td>Country 3</td>
<td>code: <input type="text" name="code3" value=""/></td>
<td>name: <input type="text" name="country3" value=""/></td>
</tr>
<tr>
<td colspan="2" align="right"><button>Find result</button> <?php
$code1 = $_POST["code1"];
$code2 = $_POST["code2"];
$code3 = $_POST["code3"];
$country1 = $_POST["country1"];
$country2 = $_POST["country2"];
$country3 = $_POST["country3"];
$arrayCountry = array (arrayCountryCode($code1, $code2, $code3),arrayCountryName($countryName1, $countryName2, $countryName3) );
$result1 = $arrayCountry[0][0]. ":" .$arrayCountry[1][0];
$result2 = $arrayCountry[0][1]. ":" .$arrayCountry[1][1];
$result3 = $arrayCountry[0][2]. ":" .$arrayCountry[1][2];
asort($arrayCountry);
?> </td>
</tr>
<tr>
<td>result:
<?php echo $result1; ?><br/>
<?php echo $result2; ?><br/>
<?php echo $result3; ?><br/>
</td>
</tr>
<td></td>
<tr>
<td>
<br/>
</td>
</table>
</form>
</body>
</html>