굵은 텍스트를 얻으려면 font-weight를 사용해야 하고 간단한 텍스트를 얻으려면 태그를 사용해야 합니다. 이 모든 것이 에코에 추가됩니다.
예시
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