Need help with this code. Any help appreciated!

Discussion in 'PHP' started by qwikad.com, Feb 13, 2012.

  1. #1
    I am not strong at PHP at all. I need to hide the HTML table when if($_POST['isevent']) occurs. Can you guys show me how this can be done?

    if($_POST['isevent']) ... hide

    <table border="1">

    <tr>
    <td>row 1, cell 1</td>
    <td>row 1, cell 2</td>
    </tr>
    <tr>
    <td>row 2, cell 1</td>
    <td>row 2, cell 2</td>
    </tr>
    </table>

    else ... show





     
    Last edited by a moderator: Feb 13, 2012
    qwikad.com, Feb 13, 2012 IP
  2. ROOFIS

    ROOFIS Well-Known Member

    Messages:
    1,234
    Likes Received:
    30
    Best Answers:
    5
    Trophy Points:
    120
    #2
    Going by the logic you've posted your wanting to see if data isset for the boolean but for efficiency for your conditional it's easer to bypass the else statement and ask if the event is false ie: !isset and echo table from there.

    example code:

    
    if (!isset($_POST['isevent'])) {
    
    echo '<table border="1">
          <tr>
          <td>row 1, cell 1</td>
          <td>row 1, cell 2</td>
          </tr>
          <tr>
          <td>row 2, cell 1</td>
          <td>row 2, cell 2</td>
          </tr>
          </table>' ;
    
    }
    
    PHP:

    This is the equivalent behavior to if (isset($_POST['isevent'])) ... hide which it doe's on default,
    and will invoke else ... show if event is false: !isset.


    ROOFIS :cool:
     
    Last edited: Feb 13, 2012
    ROOFIS, Feb 13, 2012 IP
  3. Andre91

    Andre91 Peon

    Messages:
    197
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    0
    #3
    Remove the table completely from your PHP code. Then add:

    
    if (!isset($_POST['isevent'])) {
    echo '<table border="1">
    <tr>
    <td>row 1, cell 1</td>
    <td>row 1, cell 2</td>
    </tr>
    <tr>
    <td>row 2, cell 1</td>
    <td>row 2, cell 2</td>
    </tr>
    </table>';
    }
    
    PHP:
     
    Andre91, Feb 13, 2012 IP
  4. qwikad.com

    qwikad.com Illustrious Member Affiliate Manager

    Messages:
    7,373
    Likes Received:
    1,720
    Best Answers:
    31
    Trophy Points:
    475
    #4
    Got it! Thanks everyone!
     
    qwikad.com, Feb 13, 2012 IP