Re: Avatar Page - My first mod
For register, you could store the images, in a array(), then use foreach()..
Example
<?php //for colors easier to read
$avatars = array('image1.png', 'image2.png', 'image3.png'); //more in here of course
$avatar_image_location = '/images/avatars/'; //image location for avatars stored in..
foreach($avatars as $avatar)
{
echo "[img][/img]
"; //show the image
echo "<input type='radio' name='avatar' value='". $avatar ."' />"; //show the radio button
}
//Then on submit.. check if its in the array..
if(!in_array($_POST['avatar'], $avatars)) //check if there in the array if not show error
{
echo "Invalid Avatar.
> [url='register.php']Back[/url]";
exit;
}
If you need anyhelp on it PM me.