DIV tag in php code einbauen ?

Code46

Erfahrenes Mitglied
Hi Forum,

ich möchte gerne einen Div tag in einem php code einbauen. Hab dies schon getan, jedoch ist dieser div tag ohne funktion. Tut sich nichts. Ich will durch JQuerry die Schriftgröße damit verändern.


PHP:
<?php
if (!$link) {
   die('<p>Error connecting to database</p>');
} else if (!$db) {
   die('<p>Error selecting database</p>');
} else {
	

    $query = "SELECT item_id,user_id,subject,description,created_at FROM item WHERE user_id ='{$_SESSION['user_id']}'";
    if ( !($result = mysql_query($query)) ) {
        die('<p>Error reading database</p>');
    }else {
		echo "<div class='container'>'";
		echo "<form action='myaccount.php' method='post'>";
		echo "<table class='table table-striped'>";
		echo "<div class='record' id='record-',{$row['item_id']}>";
        echo "<thead>";
		echo "<tr>";
		echo "<th>Type</th>";
        echo "<th>Description</th>";
        echo "<th>Uploaded Date</th>";
        echo "</tr>";
		echo "</thead>";


			while($row = mysql_fetch_assoc($result))
			{
			$i = 0;
            if ($i%3 == 0) {
                echo "  <tr>";
            }

			echo "    <td width='18'>".$row['subject']."</td>";
            echo "    <td width='18'>".$row['description']."</td>";
            echo "    <td width='18'>".$row['created_at']."</td>";
			echo "    <td width='18'><a href='?item_id={$row['item_id']}'><input name='submitDelete' type='submit' class='btn' value='Delete'></a></td>";
			echo "    <td width='18'><a href='editItem.php?item_id={$row['item_id']}'button class='btn btn-small btn-primary' type='button'>Edit</a></td>";
			

            if ($i%3 == 0) {
                echo "  </tr>";
            }
            $i++;
        }
		echo "</div>";
		echo "</div>";
        echo "</table>";
		echo "</form>";

    }
} 
?>

Code:
 <div class="box" align="right">
 					 <a class="jfontsize-button" id="jfontsize-m2" href="#">A-</a>
                    <a class="jfontsize-button" id="jfontsize-d2" href="#">A</a>
                    <a class="jfontsize-button" id="jfontsize-p2" href="#">A+</a>
					 </div>
<div class="container">


					                   
                    <script type="text/javascript" language="javascript">
                        $('.container').jfontsize({
                            btnMinusClasseId: '#jfontsize-m2',
                            btnDefaultClasseId: '#jfontsize-d2',
                            btnPlusClasseId: '#jfontsize-p2',
                            btnMinusMaxHits: 1,
                            btnPlusMaxHits: 5,
                            sizeChange: 5
                        });
                    </script>
 
Naja, dein <div class="container"> ist nirgens geschlossen. Oder doch? Ich seh grad nicht wirklich.
Also nach deinem geposteten HTML-Code wird er nicht geschlossen.
Nach deinem PHP-Code beginnt er vor der Form und dem Table-Tag, endet aber nachher drin.

Poste doch mal das generierte HTML
 
Zurück