How can the text be aligned next to the radio button in PHP?

To align text next to a radio button in PHP, you can use HTML and CSS to style the radio button and text accordingly. You can wrap the radio button and text in a label tag, and use CSS to style the label to display inline with the radio button. By setting the display property of the label to inline-block, you can achieve the desired alignment.

<input type="radio" id="option1" name="option" value="option1">
<label for="option1" style="display: inline-block;">Option 1</label>