Need help with a bit of code...

Discussion in 'PHP' started by scart3r, Dec 26, 2006.

  1. #1
    My site is here http://www.trafficbunnies.com

    I have two things that I want to be able to do... first of all, I want to have the login bit on the frontpage, but am unsure about how to do it. I don't want people to have to go to an extra page, but be able to login there.

    The other thing is that I have an online forum here http://www.trafficbunnies.com/forum . On the left hand side, I have a list of recent topics and was wondering if I could link that to the frontpage of the first site. Can we do it so that it automatically updates like it does in the forum, only have it so it does it on the frontpage of the main site aswell.

    I am sure there are some clever people here - if you can help by filling me in on either of these things I would love to hear from you :D

    Cindy
     
    scart3r, Dec 26, 2006 IP
  2. maiahost

    maiahost Guest

    Messages:
    664
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Let's see :
    first part : put this where you want the login form
    
    <table border="0" id="table8" class="wsft_grid">
    <form action="index.php?_a=login_form" method="post">
    <tr>
    <th colspan="2">Login Form</th>
    </tr>
    <tr>
    <td>Email Address </td>
    <td>
    <input type="text" name="email" value="" size="20" class="textinput"></td>
    </tr>
    <tr>
    <td>Password</td>
    <td>
    <input type="password" name="password" size="20" class="textinput"></td>
    </tr>
    <tr>
    <td colspan="2" align="right">Remember my login	information
    <input type="checkbox" name="remb" value="ON"></td>
    </tr>
    <tr>
    <td colspan="2">
    <input type="submit" value="Submit" name="B1" style="float: right;" class="buttonsubmit"></td>
    </tr>
    </form>
    </table>
    
    Code (markup):
    second part :
    you can do it with rss feeds from the forum or I will post something in a bit.

    EDIT - actually this might help : http://www.phpbbhacks.com/download/6172
     
    maiahost, Dec 26, 2006 IP
    scart3r likes this.