Total beginner with PHP:I have an form based on table data that the user can add any number of rows too, currently I'm calling the data in my .php like:\[code\]$para01 = $_POST["1_0"];$url01 = $_POST["1_1"];$para02 = $_POST["2_0"];$url02 = $_POST["2_1"];\[/code\]etc.I'd like a way call the table data, so I can cater for x amount of rowsso, my pseudo code would be:for each row, apply cell id 0 to $url and id 1 to $parathen echo url and para in some htmlrepeat until all rows have been expressed.Really appreciate any advice!