Recent content by cjay_cjay

  1. C

    PHP Array Loop - need help please!!!?

    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...
  2. C

    Whats wrong with this php code? Keep in mind im trying to keep this as simple as...

    ...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"...
Back
Top