5568 sujets

Sémantique web et HTML

Bonjour,

J'essaye de créer un site mais c'est dur dur, enfin j'ai du courage Smiley lol
Mais j'ai des erreurs dans cette page :
a écrit :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<html>

<head>
<title>::Dream Theater Bootlegs::</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="styles2.css">

</head>

<body>
<div id="site">
<?php
include("access.php");
$link = mysql_connect($host, $user, $password) or die(mysql_error().' || '.mysql_errno().' || '.__LINE__);
mysql_select_db("mirascheat", $link) or die(mysql_error().' || '.mysql_errno().' || '.__LINE__);
$bootleg_id = $_GET["id"];
$band_id = explode ("_", $bootleg_id);
if ($band_id[0] != "dt" and $band_id[0] != "jr"){
$result = mysql_query("select band, date, location, title, coverart, label, media, time, type, lineage, complete, audio, video, menu, credits, setlist, notes from other_bands where id='$bootleg_id'") or die(mysql_error().' || '.mysql_errno().' || '.__LINE__);
}
else {
if (strpos($bootleg_id, "video") != FALSE){
$result = mysql_query("select tour, date, location, title, coverart, label, media, time, type, lineage, complete, audio, video, menu, chapter, credits, setlist, notes from dt where id='$bootleg_id'") or die(mysql_error().' || '.mysql_errno().' || '.__LINE__);
}
else{
$result = mysql_query("select tour, date, location, title, coverart, label, media, time, type, lineage, complete, audio, video, menu, chapter, credits, setlist, notes from audio where id='$bootleg_id'") or die(mysql_error().' || '.mysql_errno().' || '.__LINE__);
}
}
$row = mysql_fetch_row($result);

echo '<h1>'.$row[0].'<br>'.$row[1].'<br>'.$row[2].'<br>'.$row[3].'</h1>';

if($row[4]=="Yes" or $row[5]=="Yes"){
echo '<p>';
if($row[4] == "Yes" ){echo '<a href="coverart/'.$bootleg_id.'.jpg"><img src="coverart/'.$bootleg_id.'p.jpg" alt="'.$bootleg_id.'p.jpg"></a>';}
if($row[5] == "Yes" ){echo '<a href="coverart/'.$bootleg_id.'l.jpg"><img src="coverart/'.$bootleg_id.'lp.jpg" alt="'.$bootleg_id.'lp.jpg"></a>';}
echo '</p>';
}
echo '<p>Media : '.$row[6].'<br>';
echo 'Time : '.$row[7].'<br>Type : '.$row[8].'<br>';
echo 'Lineage : '.$row[9].'<br>';
echo 'Complete : '.$row[10].'<br>';
echo 'Audio Quality : '.$row[11].'<br>';
if (strpos($bootleg_id, "video") != FALSE){echo 'Video Quality : '.$row[12].'';}
echo '</p>';
echo '<p>Cover Art : '.$row[4].'<br>Label : '.$row[5].'<br>';
if (strpos($bootleg_id, "video") != FALSE){
echo 'Menu : '.$row[13].'<br>';
echo 'Chapter : '.$row[14].'</p>';
}
else echo '</p>';
echo '<p>Taped by : '.$row[15].'</p>';
echo '<p>Setlist :<br>'.$row[16].'</p>';
if($row[17] != ""){echo '<p>Notes :<br>'.$row[17].'</p>';}
?>

</div> <!-- fin #site -->
</body>

</html>


Le validateur me renvoie ces deux erreurs :
a écrit :
# Error Line 34 column 74: end tag for element "H1" which is not open.

...$row[1].'<br>'.$row[2].'<br>'.$row[3].'</h1>';

The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

If this error occured in a script section of your document, you should probably read this FAQ entry.

&#9993;
# Error Line 54 column 18: end tag for element "P" which is not open.

else echo '</p>';


SI quelqu'un a une idée ?
Je précise que je suis d'abord aller faire un petit tour sur la FAQ (mais surement pas assez long Smiley rolleyes Smiley lol )
Puis si vous voyez des trucs choquant dans mon code n'hésitez pas hein Smiley cligne

Par avance merci

Mira
Modérateur
Bonjour,

De quelle façon procède-tu à la validation de ton fichier ? En soumettant l'url de la page en ligne ou en envoyant directement ton fichier local .php ?

Apparemment, tu semble soumettre le fichier source php. Le validateur n'interprète pas le code PHP. Il faudrait que tu soumettre plutôt ta page en ligne via l'url, ou encore soumettre le fichier HTML généré par PHP.

Sinon, assure-toi que ton code PHP est écrit correctement et qu'il est bien interprété pour renvoyer le contenu de tes variables, et non le nom de tes variables.

Je ne sais pas si je suis clair. Je suis un peu rouillé ! Smiley cligne
Modifié par Tony Monast (21 Sep 2006 - 20:23)