Problems with the panel #1


  • New
  • Defect
Open
Assigned to _ForgeUser8312371
  • _ForgeUser9890570 created this issue Nov 22, 2012

    What steps will reproduce the problem?
    1. Upload files to webserver
    2.edit php file
    3.browse to it via web browser

    What is the expected output? What do you see instead?
    Login page

    What version of the product are you using?
    current

    Do you have an error log of what happened?
    login information did not show up. here is the panel:
    http://mine.twpclan.com/tickets/

    Please provide any additional information below.
    here is my file
        <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
    <html>
    <head>
        <title>SimpleTicket - Web Interface </title>
        <STYLE TYPE="text/css">

    BODY { background-image: url(http://199.168.100.2/~aagaming/BukkitDevelopment/SimpleHelpTicketsWebGUI/stone.png) }
    P { background-image: none }

    </STYLE>
    </head>

    <body>

    <h1>Simple Help Tickets - Web GUI</h1>
    <h5>by Adriani6</h5>

        <?php
    //Edit the three lines below only ! Editing anything else can result in errors !

        mysql_connect("localhost", "simpletick", "xxxxx") or die(mysql_error());
        mysql_select_db("simpletick") or die(mysql_error());

        $result = mysql_query("SELECT * FROM simpletick");

        while($row = mysql_fetch_assoc($result)){

        echo "<table width='600' cellpadding='5' cellspacing='5' border='1'>";
        echo "<thread><tr><th>Description</th><th>Date</th><th>Collate</th><th>Owner</th><th>World</th><th>X</th><th>Y</th><th>Z</th><th>Reply</th><th>Status</th><th>Admin</th><th>Expiration</th></tr></thread>";
        echo "<tr><td>".$row['description']."</td><td>".$row['date']."</td><td>".$row['collate']."</td><td>".$row['owner']."</td><td>".$row['world']."</td><td>".$row['x']."</td><td>".$row['y']."</td><td>".$row['z']."</td><td>".$row['reply']."</td><td>".$row['status']."</td><td>".$row['admin']."</td><td>".$row['expiration']."</td></tr>";
        echo "</table>";
        }

        ?>

  • _ForgeUser9890570 added the tags New Defect Nov 22, 2012

To post a comment, please login or register a new account.