为了获得粗体文本,您需要使用font-weight,而要获得简单文本,可以使用<span>标记。所有这些都添加到回显中。
PHP代码如下
<!DOCTYPE html> <html> <body> <?php echo '<span style="font-size: 20px; color: #006400; font-weight: bold;">This is my first PHP Program</span> '.$row['data']; ?> </body> </html>
输出结果
这是示例输出的快照。
This is my first PHP Program