954,568 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Dynamic radio buttons

How to generate dynamic radio buttons in php

jobykjoseph
Newbie Poster
12 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 
How to generate dynamic radio buttons in php
<?
$arrX = array('Ben','Sam','Will');
foreach ($arrX as $value) {
	echo "<input type=\"radio\" name=\"RadioGroup1\" value=".$value." />".$value."";
}
?>


CMIIW :)

black_ip82
Newbie Poster
15 posts since Nov 2007
Reputation Points: 10
Solved Threads: 0
 

This code is not working

jobykjoseph
Newbie Poster
12 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

What do you mean 'is not working' ? What error are you getting ?

nav33n
Purple hazed!
Moderator
4,465 posts since Nov 2007
Reputation Points: 524
Solved Threads: 356
 

i was not able to any output from this code...

jobykjoseph
Newbie Poster
12 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

Use <?php instead of <? (very bad habit).

Matti Ressler
Suomedia

Suomedia
Junior Poster
158 posts since Mar 2008
Reputation Points: 15
Solved Threads: 19
 

Use <?php instead of <? (very bad habit).

Matti Ressler Suomedia

I don't think thats the problem. Because, If short tags are disabled on his computer, it will just print the 'code' as text.

nav33n
Purple hazed!
Moderator
4,465 posts since Nov 2007
Reputation Points: 524
Solved Threads: 356
 
I don't think thats the problem. Because, If short tags are disabled on his computer, it will just print the 'code' as text.


Well that depends on which browser they are using.


Matti Ressler
Suomedia

Suomedia
Junior Poster
158 posts since Mar 2008
Reputation Points: 15
Solved Threads: 19
 

My actual question was how do i create radio buttons in a loop

for eg:
for($i=0;$i<10;$i++)
{
echo 'abc';
echo 'def';
}

how can i select 10 radio buttons out of this 20 buttons ang get the value of these buttons......

jobykjoseph
Newbie Poster
12 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You