hey

as im writing my own image script, i wanted to add a choice for users. so i written some test code b4 i implement, can any1 tell me if this wud work:

PHP Code: 

<?php

    $selectRadio 
$_POST['set_size'];
    
    if ( 
$selectRadio == '1' ) {
        
        
//Do your thing
        
    
} elseif ( $selectRadio == '2' ) {
        
        
//Do your thing
        
    
}



?>

<input name="set_size" type="radio" value="1">Forum Signature (180 px)

<input name="set_size" type="radio" value="2">Website Image  (360 px)
Chris2k Reviewed by Chris2k on . Radio Choice hey as im writing my own image script, i wanted to add a choice for users. so i written some test code b4 i implement, can any1 tell me if this wud work: <?php $selectRadio = $_POST; Rating: 5