Visualizzazione risultati 1 fino 2 di 2

Discussione: Validare pagina

  1. #1
    Guest

    Arrow Validare pagina

    Salve a tutti! Ho messo l'indirizzo della pagina chat.php nel convalidatore CSS , dice "complimenti nessun errore trovato", poi messo stesso indirizzo nel convalidatore html e dice " spiacente, la pagina non può essere controllata"! Qui metto il codice della pagina , ma non capisco dove sia l'errore
    Codice PHP:
    header("Cache-Control: no-cache, must-revalidate");
    header("Pragma: no-cache");
    //header('Content-type: application/vnd.wap.xhtml+xml');
    echo "<?xml version="1.0\" encoding=\"utf-8\"?>";
    echo
    "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\" \"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";
    ?>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta forua="true" http-equiv="Cache-Control" content="max-age=0"/>
    <meta forua="true" http-equiv="Cache-Control" content="must-revalidate"/>
    </head>
    <?php

    include("config.php");
    include(
    "core.php");
    connectdb();
    $action=$_GET["action"];
    $id=$_GET["id"];
    $sid = $_GET["sid"];
    $rid=$_GET["rid"];
    $rpw=$_GET["rpw"];
    $uid = getuid_sid($sid);
    $uexist = isuser($uid);
    $theme = mysql_fetch_array(mysql_query("SELECT theme FROM ibwf_users WHERE id='".$uid."'"));
    $data = date("H:i");

    if((
    islogged($sid)==false)||!$uexist)
    {
    echo
    "<head>";
    echo
    "<title>Error!!!</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/white_medium.css\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<center>";
    echo
    "Non sei loggato<br/>";
    echo
    "O la tua sessione è scaduta<br/><br/>";
    echo
    "<a href=\"index.php\">Login</a>";
    echo
    "</center>";
    echo
    "</html>";
    echo
    "</body>";
    exit();
    }

    if(
    isbanned($uid))
    {
    echo
    "<head>";
    echo
    "<title>Error!!!</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<p align=\"center\">";
    echo
    "<img src=\"../images/notok.gif\" alt=\"x\"/><br/>";
    echo
    "<b>Sei stato Bannato</b><br/><br/>";
    $banto = mysql_fetch_array(mysql_query("SELECT timeto, pnreas, exid FROM ibwf_penalties WHERE uid='".$uid."' AND penalty='1' OR uid='".$uid."' AND penalty='2'"));
    $banres = mysql_fetch_array(mysql_query("SELECT lastpnreas FROM ibwf_users WHERE id='".$uid."'"));
    $remain = $banto[0]- time();
    $rmsg = gettimemsg($remain);
    echo
    "<b>Tempo rimasto: </b>$rmsg<br/>";
    $nick = getnick_uid($banto[2]);
    echo
    "<b>By: </b>$nick<br/>";
    echo
    "<b>Reason: </b>$banto[1]";
    //echo "<a href=\"index.php\">Login</a>";
    echo "</p>";
    echo
    "</body>";
    echo
    "</html>";
    exit();
    }
    $isroom = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM ibwf_rooms WHERE id='".$rid."'"));
    if(
    $isroom[0]==0)
    {
    echo
    "<head>";
    echo
    "<title>Error!!!</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<center>";
    echo
    "<b>La Room non esiste</b><br/><br/>";
    echo
    "<a href=\"index.php?action=chat&sid=$sid\">Chatrooms</a>";
    echo
    "</center>";
    echo
    "</body>";
    echo
    "</html>";
    exit();
    }
    $passworded = mysql_fetch_array(mysql_query("SELECT pass FROM ibwf_rooms WHERE id='".$rid."'"));
    if(
    $passworded[0]!="")
    {
    if(
    $rpw!=$passworded[0])
    {
    echo
    "<head>";
    echo
    "<title>Error!!!</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<center>";
    echo
    "<b>Password Errata!</b><br/>";
    echo
    "Non è possibile entrare in questa stanza<br/><br/>";
    echo
    "<a href=\"index.php?action=chat&sid=$sid\">Chatrooms</a>";
    echo
    "</center>";
    echo
    "</body>";
    echo
    "</html>";
    exit();
    }
    }
    if(!
    canenter($rid,$sid))
    {
    echo
    "<head>";
    echo
    "<title>Error!!!</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<center>";
    echo
    "<b>Autorizzazione negata!</b><br/><br/>";
    echo
    "<a href=\"index.php?action=chat&sid=$sid\">Chatrooms</a>";
    echo
    "</center>";
    echo
    "</body>";
    echo
    "</html>";
    exit();}
    addtochat($uid, $rid);
    $timeto = 300;
    $timenw = time();
    $timeout = $timenw-$timeto;
    $rooms = mysql_fetch_array(mysql_query("SELECT id, name FROM ibwf_rooms WHERE id='".$rid."'"));
    $rname = $rooms[1];
    $nick = getnick_sid($sid);

    if (
    $action=="")
    {
    echo
    "<head>";
    echo
    "<title>$rname</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    $unreadpopup=mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM ibwf_popups WHERE unread='1' AND touid='".$uid."'"));
    if (
    $unreadpopup[0]<1)
    {
    echo
    "<meta http-equiv=\"refresh\" content=\"30; url=chat.php?time=";
    echo
    "".date("dmHis")."";
    echo
    "&sid=$sid&rid=$rid&rpw=$rpw\">";
    }
    echo
    "</head>";
    echo
    "<body>";
    $mmsg = htmlspecialchars(getsetmood(getuid_sid($sid)));codiceecho "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&sid=$sid\">Home</a>";
    echo
    "</body>";
    }
    /////////////////////////////////////////////////////SAY

    else if ($action=="say")
    {
    echo
    "<head>";
    echo
    "<title>Scrivi Msg</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<p align=\"center\">";codice/////////////////////////////////////////////////////SAY2
    else if ($action=="say2") {
    echo
    "<head>";
    echo
    "<title>Inviare Privato</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<p align=\"center\">";codice/////////////////////////////////////////////////////CHAT OPTIONS

    else if ($action=="options")
    {
    echo
    "<head>";
    echo
    "<title>Chat Opzioni</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    $mmsg = htmlspecialchars(getsetmood(getuid_sid($sid)));codiceecho "<head>";
    echo
    "<title>Chat UserList</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<p><br/>";codiceecho "<head>";
    echo
    "<title>Exposing ChatUser</title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<p align=\"center\"><br/>";codiceecho "<head>";
    echo
    "<title></title>";
    echo
    "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
    echo
    "</head>";
    echo
    "<body>";
    echo
    "<p align=\"center\"><br/>";codiceecho "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a></p>";
    echo
    "</body>";
    }
    ?>

  2. #2
    L'avatar di sevenjeak
    sevenjeak non è connesso AlterGuru
    Data registrazione
    25-10-2007
    Residenza
    Roma
    Messaggi
    1,767

    Predefinito

    Se c'era un errore te lo diceva, invece di dice solo: "spiacente la pagina non puo essere controllata" ivedentemente non hai inserito l'indirizzo coretto della pagina da verificare.

    P.S.: non ne sono convinto, ma la pagina per essere controllato deve avere il DOCTYPE
    Ultima modifica di sevenjeak : 06-10-2009 alle ore 13.05.39

    Sevenjeak
    Software developer and much more

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •