Я довольно новичок в PHP. Как добавить CSS-стили к выходу $? Например. font-family или поместите его в div с классом style.
Код обработки формы:
require_once("connect.php");
if (!$db_server) {
die("Unable to connect to MySQL: " . mysqli_connect_error());
} else {
mysqli_select_db($db_server, $db_database);
$query = "SELECT * FROM ingredients WHERE dietID='".$_SESSION['dietID']."'";
$result = mysqli_query($db_server, $query);
if (!$result)
die("Query failed: " . mysqli_error($db_server));
while ($row = mysqli_fetch_array($result)) {
$str_options .= "<option value='" . $row['ID'] . "'>";
$str_options .= $row['ingredient'];
$str_options .= "</option>";
}
}
И вывод из базы данных результатов:
<?php
echo $output;
?>
Просто сделайте это как в HTML:
$output .= '<div style="font-family: sans-serif">My Div</div>'
или вы можете добавить полный <style>
Элемент:
$output .= '<style>div{ font-family: sans-serif; }</style>'
для класса:
$output .= '<div class="myClass">My Div</div>'
$output .= '<style>.myClass{ font-family: sans-serif; }</style>' // but this should go in the CSS file
Других решений пока нет …