PHP Echo and Radio button on one line

New to PHP. Wondering how to display a radio button and PHP echo on the same line. Right now the Echo is showing above the radio button. I’d like to display the radio button on the left with the PHP echo on the same line.

[php]<?php echo __('Value1','rsvpmaker');?><input name=“yesno” type=“radio” value=“1” t($rsvprow) || $rsvprow[“yesno”]) ? ‘checked=“checked”’ : ‘’; >

<?php echo __('Value2','rsvpmaker');?> <?php echo __('Value3','rsvpmaker');?> <?php echo __('Value4','rsvpmaker');?> <?php echo __('Value5','rsvpmaker');?>[/php]

[php]

<?php echo __('Value1','rsvpmaker');?> <?php echo __('Value2','rsvpmaker');?> <?php echo __('Value3','rsvpmaker');?> <?php echo __('Value4','rsvpmaker');?> <?php echo __('Value5','rsvpmaker');?>
[/php]

try that ,not tested so

Sponsor our Newsletter | Privacy Policy | Terms of Service