print the loop value

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Geethu03
    New Member
    • Dec 2006
    • 45

    print the loop value

    Hi
    i got the array values from the html page using foreach. In this i can get multiple array values to print in the table.

    the values are

    Date Forward Process

    12/9/8008 5 3
    15/09/2008 7 4


    For Date I am using this

    Code:
    foreach ($_POST['CreatedDate'] as $key => $value) {
    	echo $value;
    	 }
    the same as i use  forward and Process 
     
    foreach ($_POST['forward'] as $key => $value) {
     echo $value;
    	 }
    foreach ($_POST['Process'] as $key => $value) {
     echo $value;
    	 }
    how can i print this values for the above table format. i am tried to print but i got the three values are one by one.

    anyone help to solve this issue

    Thanks and regards,
    Geethu.
    Last edited by Markus; Oct 15 '08, 12:21 PM. Reason: added # tags
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Geethu, you have been posting long enough to know that you use code tags when posting code. Please do not break from trend (I've seen you use code tags before).

    And to your question, I'm finding it hard to understand. Could you maybe be a bit clearer?

    Thanks.

    Comment

    • Geethu03
      New Member
      • Dec 2006
      • 45

      #3
      Originally posted by Markus
      Geethu, you have been posting long enough to know that you use code tags when posting code. Please do not break from trend (I've seen you use code tags before).

      And to your question, I'm finding it hard to understand. Could you maybe be a bit clearer?

      Thanks.
      i want to print the loop values in table format. In first row i want to print the date and forward in the last row process.

      how can i do it

      Thanks

      Comment

      Working...