Note that there are some explanatory texts on larger screens.

plurals
  1. POsome ?> appears in my page all tags opned are closed
    primarykey
    data
    text
    <p>I met some trouvle in my pages, some ?> ?> ?> ?> ?> ?> ?> does appears in my page, it seems lie the code is not interpreted, but all is closed and I do not know where it can comes from</p> <p>below is my code</p> <pre><code>&lt;?php //For weight change $down_icon = 'images/thumb_down.gif'; $same_icon = 'images/cool.gif'; $up_icon = 'images/thumb_up.gif'; $comment_icon = 'images/notebook.gif'; //DB Values for icons $status_icons[0] = $down_icon; $status_icons[1] = $same_icon; $status_icons[2] = $up_icon; ?&gt; &lt;style&gt; .fif {display: inline-block; padding-left:5px; padding-right: 5px; /* box-shadow: 8px 8px 0px #aaa; border-width:1px; border-style:dashed; border-color:black;}*/ } &lt;/style&gt; &lt;table class="noborder"&gt; &lt;tr&gt;&lt;td&gt; &lt;div class="uibutton-group"&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=1"&gt;Lundi&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=2"&gt;Mardi&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=3"&gt;Mercredi&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=4"&gt;Jeudi&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=5"&gt;Vendredi&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=6"&gt;Samedi&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=7"&gt;Dimanche&lt;/a&gt; &lt;/div&gt; &lt;/td&gt; &lt;td&gt;&lt;b&gt;Derniers jours en arrière &lt;/b&gt; &lt;/td&gt; &lt;td&gt;&lt;div class="uibutton-group"&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=&lt;?php echo $_GET['day'] ?&gt;&amp;farback=30"&gt;30&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=&lt;?php echo $_GET['day'] ?&gt;&amp;farback=60"&gt;60&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=&lt;?php echo $_GET['day'] ?&gt;&amp;farback=90"&gt;90&lt;/a&gt; &lt;a class="uibutton" href="index.php?p=history&amp;day=&lt;?php echo $_GET['day'] ?&gt;&amp;farback=120"&gt;120&lt;/a&gt; &lt;/div&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt; &lt;div class="maindivforexos" style="width:100%;display:inline-block"&gt; &lt;?php if (!isset($_GET['day'])) { $_GET['day'] = 1; } if (isset($_GET['farback'])) { $farback = $_GET['farback']; } else { $farback = 28; } $query = "SELECT `record` FROM `workouts` WHERE `workouts`.`day_number`='1' AND `workouts`.`user` = {$_SESSION['userid']} AND `workouts`.`record` &gt;= SUBDATE(now(),INTERVAL {$farback} day) GROUP BY `record` "; $result = mysql_query($query); if (!mysql_num_rows($result)): ?&gt; &lt;div class=warning&gt;Il n'y a pas d'enregistrements pour ce jour.&lt;/div&gt; &lt;?php else: while ($cr = mysql_fetch_array($result)): ?&gt; &lt;div style="width:200px" class="fif"&gt;&lt;table style="width:100%"&gt; &lt;tr class="fbgreybox"&gt; &lt;td colspan="3" style="text-align: center;font-weight: bold"&gt; &lt;img src="images/calendar_2.png"&gt; Séance du : &lt;?php echo date('d-m-Y', strtotime($cr['record'])) ?&gt; &lt;/td&gt; &lt;/tr&gt; &lt;?php $sql = "SELECT `exercise` FROM `workouts` WHERE `record` = '{$cr['record']}' AND `user`= {$_SESSION['userid']} GROUP BY `exercise`"; $result = mysql_query($sql); while ($exo = mysql_fetch_assoc($result)) : ?&gt; &lt;tr class="fbinfobox"&gt; &lt;td colspan="3" style="text-align: left"&gt; &lt;img src="images/Sport-dumbbell.png"&gt; &lt;?php echo exerciseName($exo['exercise']) ?&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="text-align: center;font-weight: bold"&gt;Séries&lt;/td&gt; &lt;td style="text-align: center;font-weight: bold"&gt;Reps&lt;/td&gt; &lt;td style="text-align: center;font-weight: bold"&gt;Poids&lt;/td&gt; &lt;/tr&gt; &lt;?php $rqt = "SELECT `set_number`, `reps`, `weight` FROM `workouts` WHERE `exercise` = {$exo['exercise']} AND `record` = '{$cr['record']}' AND `user` = {$_SESSION['userid']} ORDER BY `set_number`"; $result2 = mysql_query($rqt); while ($detail = mysql_fetch_assoc($result2)): ?&gt; &lt;tr&gt; &lt;td&gt; Série &lt;?php echo $detail['set_number'] ?&gt; &lt;/td&gt; &lt;td&gt; &lt;?php echo $detail['reps'] ?&gt; &lt;/td&gt; &lt;td&gt; &lt;?php echo $detail['weight'] ?&gt; &lt;/td&gt; &lt;/tr&gt; ?&gt; &lt;?php endwhile; endwhile; ?&gt; &lt;/table&gt; &lt;/div&gt; &lt;?php endwhile; endif; ?&gt; &lt;/div&gt; </code></pre> <p><img src="https://i.stack.imgur.com/53TTD.png" alt="enter image description here"></p> <p>I really have no Idead on where it can comes from because All tags opened are closed. It appears between the div and the table in the loop</p> <p>Anykind of help will be much appreciated</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload