CIL Naam zoeken
Bij meerdere lijnen kunt u (indien nodig) naar rechts, links scrollen, met uw pijltjes of via de scroll-bar geheel onder de pagina.
[ScrollableTable]
[insert_php]
$Naam = $_POST[‘naam’];
//echo “Naam (post) =”.$Naam;
require_once(“_data_cil/includes/config.php”);
// Create connection
$conn = new mysqli(DB_SERVER, DB_USER, DB_PASS, DB_NAME);
// Check connection
if ($conn->connect_error) {
die(“Connection failed: ” . $conn->connect_error);
}
$sql = “SELECT * FROM Tbl_cil WHERE naam like ‘%$Naam%’ OR auteur like ‘%$Naam%’ OR ZAADGEVER like ‘%$Naam%’ OR STUIFMEELGEVER like ‘%$Naam%’ ORDER BY naam ASC”;
$result = $conn->query($sql);
//tabel
echo “
Naam Cultivar name | Auteur Hybrizer | Jaar Introduced | Land Country | AFS Number of AFS number | NKvF listnumber | HTM | BLOEI E=S / ED=SD/ D=D | GROEI O=Up/ H= Tr/ HH=stif Tr | KLEUR KELK Sepal colour | KLEUR KROON Corolla colour | ZAADGEVER Seed Parent | STUIFMEELGEVER Pollen Parent | KEURINGSNUMMER Assay number | PUNTEN Score of Score nominated 70> | Datum GETUIGSCHRIFT V.K.C. Awards |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
” . $http_adres. “ | ” . $http_adres_a. “ | ” . $row[‘jaar’] . “ | ” . $row[‘land’] . “ | ” . $row[‘AFS’] . “ | ” . $row[‘NKvF’] . “ | ” . $row[‘HTM’] . “ | ” . $row[‘BLOEI’] . “ | ” . $row[‘GROEI’] . “ | ” . $row[‘KLEUR_KELK’] . “ | ” . $row[‘KLEUR_KROON’] . “ | ” . $http_adres_z. “ | ” . $http_adres_s. “ | ” . $row[‘KEURINGSNUMMER’] . “ | ” . $row[‘PUNTEN’] . “ | ” . $row[‘VKC’] . “ |
“;
[/insert_php]
[/ScrollableTable]