Untitled

 avatar
unknown
plain_text
5 months ago
744 B
3
Indexable
Here’s the text extracted from the image you provided:

```php
$dersSayisi = $_POST["dersSayisi"];
echo "<div align='center'>";
echo "<table border='1' cellspacing='1' cellpadding='0'><tr>";
echo "<td width='200'>Ders Adı</td><td width='100'>Öğrenci Sayısı</td></tr>";
echo "<form method='GET' name='notGir' action='notGir.php'>";
for ($i = 1; $i <= $dersSayisi; $i++) {
    if ($i % 2 == 0) echo "<tr bgcolor='#FFA500'>";
    else echo "<tr>";

    echo "<td width='200'><a href='notGir.php?ders_ad=" . $_POST["ders" . $i] . "&ogr_sayisi=" . $_POST["ogrSayisi" . $i] . "'>" . $_POST["ders" . $i] . "</a></td>";
    echo "<td width='100'>" . $_POST["ogrSayisi" . $i] . "</td></tr>";
}
```

Let me know if you need any further assistance!
Editor is loading...
Leave a Comment