Gibt es eine Möglichkeit für PHP, dass sie nur Nicht-Blank-Werte an HTML Select übergeben können?MySql

MySQL DBMS-Forum
Anonymous
 Gibt es eine Möglichkeit für PHP, dass sie nur Nicht-Blank-Werte an HTML Select übergeben können?

Post by Anonymous »

Ich habe eine phpMyadmin-basierte SQL-Datenbank und eine HTML-Seite mit einem Formular, das mithilfe von PHP sowohl lesen als auch in die Datenbank schreiben kann. The form has some dropdown menus, some of which are populated using columns from the database using a php foreach syntax like so:


PHP:

{
$conn = mysqli_connect('localhost','root','','db_name');
$result = mysqli_query($conn,"SELECT DISTINCT Chemical from table_name");
$Chemical = $result->fetch_all(MYSQLI_ASSOC);
}

HTML:

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post