ok my array starts something like this
$array1 = array();
$array[0][0] = "A";
$array[0][1] = "B";
$array[0][2] = "C";
$array[0][3] = "D";
$array[0][4] = "E";
$array[1][0] = "F";
this continues all the way down to
$array[4][4] = "Y"
now how do i put this in a loop?
kspeaks, i thought of that...
...possible.? this is the html code to get your number of hours worked and your payrate
<html>
<head>
<title>PHP Lab 10</title>
</head>
<body>
<form action="paycheck.php" method="post">
Number of hours worked: <input type="text" name="hoursworked" />
Hourly Wage: <input type="text"...