Jump to content

Q695

Members
  • Posts

    783
  • Joined

  • Last visited

Posts posted by Q695

  1. tie the back end into a database that populates the form based on numbers, and text.  On the back end have it do a for each output, and hidden if the variables are filled in, but others are blank.  I did one of those a few years ago.

  2. Hello!

    If I understand your question correctly, you can do this.

    <td><font face="Arial, Helvetica, sans-serif"><?php echo '<a href=". $f6 .">A Link</a>'; ?></font></td>

    Hope that helps!

     

    He forgot the while loop:

    <?php
    while ($row){
    $f1=$row['f1'];
    $f6=$row['f6'];
    
    echo"
    <tr>
    <td><font face='Arial, Helvetica, sans-serif'> $f1</font></td>
    ...
    <td><font face='Arial, Helvetica, sans-serif'> $f6 </font></td>
    </tr>";
    }
    ?>
    
  3. Am I missing anything for my variable security statement?

    foreach( $_GET as $key => $value){
    $_GET["$key"]=mysql_real_escape_string($value) ;
    }
    foreach( $_POST as $key => $value){
    $_POST["$key"]=mysql_real_escape_string($value) ;
    }
    

    How would I reverse it on the output side?

  4. Yes, page will be a rational number, and doing an include within an include, like 3.1, and 3.2 would be elements of 3.

     

    I was trying both ways, and displaying the code for the types of things I tried.

     

    It's still in the range.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.