Page 3 of 3 FirstFirst 123
Results 21 to 27 of 27
  1. #21
    Join Date
    Aug 2005
    Location
    Tunbridge Wells, Kent
    Posts
    5,063
    Tokens
    1,624

    Latest Awards:

    Default HELP!!! I don't understand HELP!!!!!

    Can someone please put it in a replay form on how i am meant to do this proply i am very confused in what ppl are saying and its wasn't working for me thats why i need help !!!! Thanx

  2. #22
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by DJ-Snoop
    Can someone please put it in a replay form on how i am meant to do this proply i am very confused in what ppl are saying and its wasn't working for me thats why i need help !!!! Thanx
    NOTE: This isnt a tutorial, its a script that I needed help on.

    Also you may not use the script unless I say so.


    [Can I ask you not to use it for the time being, I may let people use it once Its been writen]

  3. #23
    Join Date
    Jul 2004
    Location
    Webby Forums!
    Posts
    1,879
    Tokens
    0

    Latest Awards:

    Default

    what you want the code for a reply form?? or you want to be told how to do this "/


    Chilimagik.net // Reviews, Band Biographies, News, Pics + Loads More!!
    [Thybag.co.uk - Vive la revolutione]

  4. #24
    Join Date
    Nov 2004
    Location
    HabboWeb FM Offices
    Posts
    3,019
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Mentor
    Liek i said, your utilisng headers before sesion.
    Code:
    <font face=verdana size=1>
    <?php
    
    session_start();
    include('config.php');
    
    if($action == "submit"){
        if(($userinput == "")||($passinput == "")){
        echo "$noinfo";
        } else {
            if(($userinput == $user)&&($passinput == $pass)){
            header( "Location: $url" );
    $_SESSION['user'] = $user;
            } else {
            echo "$fail";
            }
        }
    }
    include('admin.php')    ;
    ?>
    </font>
    Notice the varda font info?

    shoudl be
    Code:
    <?php
    
    session_start();
    include('config.php');
    echo "<font face=verdana size=1>";
    if($action == "submit"){
        if(($userinput == "")||($passinput == "")){
        echo "$noinfo";
        } else {
            if(($userinput == $user)&&($passinput == $pass)){
            header( "Location: $url" );
    $_SESSION['user'] = $user;
            } else {
            echo "$fail";
            }
        }
    }
    include('admin.php')    ;
    ?>
    </font>
    isnt the font code for php meant to be like

    <font face=\"verdana\" size=\"1\">

  5. #25
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    For this or for a norml form?

  6. #26
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    Quote Originally Posted by .:::Cr:::.
    isnt the font code for php meant to be like

    <font face=\"verdana\" size=\"1\">
    No need since there arnt any " in it, plus its easyer to just swich between ' and " makrs that slash them "/

  7. #27
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    I have taken away the font headers and still no luck.

Page 3 of 3 FirstFirst 123

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •