| | |
display image next to radio button list problem
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Sep 2008
Posts: 2
Reputation:
Solved Threads: 0
Hello all,
Im trying to display an image to the right side of radio buttons. I kind of did it, but my OK button is too low now, which means I must have put this echo code in the middle of the radio button list or something.
Im an absolute php newbie and Ive been tryig to resolve this for some time now, but I just dont see what Im doing wrong... Can anyone help, please? Im posting my code... Thanx in advance.
Im trying to display an image to the right side of radio buttons. I kind of did it, but my OK button is too low now, which means I must have put this echo code in the middle of the radio button list or something.
Im an absolute php newbie and Ive been tryig to resolve this for some time now, but I just dont see what Im doing wrong... Can anyone help, please? Im posting my code... Thanx in advance.
PHP Syntax (Toggle Plain Text)
<?php if(isset($_REQUEST["submit"]));{ $choice=$_REQUEST["choice"]; echo "Voce koje ste izabrali: $choice"; } $img=array("ananas"=>array("ananas","pineapple.jpg"), "jagode"=>array("jagode","strawberries.jpg"), "visnje"=>array("visnje","bcherries.jpg"), "lubenica"=>array("lubenica","watermelon.jpg"), "mandarine"=>array("mandarine","mandarines.jpg"), "limun"=>array("limun","lemon.jpg"), "mango"=>array("mango","mango.jpg")); ?> <div class="b" align="left" style="padding-left:15px;"> <form name="vocnaforma" method="POST" > <b><i>Izaberite voce po zelji:</i></b> <br> <?php foreach($img as $k=>$v){ echo "<input type='radio' name='choice' value='$k'"; if($k==$choice){ $imgsrc=$v[1]; echo 'checked="checked"'; } echo "> $v[0] <br/>"; } echo "<table align='center'><tr><td><img src=$imgsrc height='95'></td></tr></table>"; ?> <button name="submit" type="submit" > OK </n> </form> </div>
Ok, first off, W3schools recommend you use
So what exactly are you trying to achieve? Do you want the image next to the checked radio button only or just to the right of the whole list? You usually get flamed down for using tables to try and arrange the page how you want it so best not to use it like you are. (This is really an html problem..)
I would suggest maybe using a table with two td's, one for the radio buttons (and maybe the ok button) and one for the image, if that's what your after.
<input type="submit" ... /> tags inside forms for consistency across browsers. http://www.w3schools.com/tags/tag_button.asp (And what's with the </n> tag?)So what exactly are you trying to achieve? Do you want the image next to the checked radio button only or just to the right of the whole list? You usually get flamed down for using tables to try and arrange the page how you want it so best not to use it like you are. (This is really an html problem..)
I would suggest maybe using a table with two td's, one for the radio buttons (and maybe the ok button) and one for the image, if that's what your after.
![]() |
Similar Threads
- I have an internet connection but cannot access web pages!!! HELP!!! (Web Browsers)
- popups in Firefox, IE (w/l2mfix, hjt logs) (Viruses, Spyware and other Nasties)
- Can't delete virus (Viruses, Spyware and other Nasties)
- more "home search assistent" fun... (Viruses, Spyware and other Nasties)
Other Threads in the PHP Forum
- Previous Thread: HTTP request with negotiate authorization
- Next Thread: php form mail inside the flash
| Thread Tools | Search this Thread |
apache api array beginner binary body broken buttons cakephp checkbox class cms code cron curl database date date/time display dynamic ebooks echo email error file files folder form forms function functions global google href htaccess html image include insert ip javascript joomla limit link list login mail mediawiki menu mlm msqli_multi_query multiple mycodeisbad mysql number oop parameter paypal pdf php phpincludeissue problem query radio random recourse recursion regex remote script search seo server sessions sms source sp space speed sql static subdomain syntax system table tag tutorial update upload url validator variable vbulletin video web webdesign white wordpress xml youtube





