Click here to Skip to main content
15,885,146 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
GeneralRe: PHP Member Pages... Need major help... Pin
thebiostyle23-Jan-10 10:47
thebiostyle23-Jan-10 10:47 
GeneralRe: PHP Member Pages... Need major help... Pin
fly90423-Jan-10 11:00
fly90423-Jan-10 11:00 
GeneralRe: PHP Member Pages... Need major help... Pin
thebiostyle23-Jan-10 11:18
thebiostyle23-Jan-10 11:18 
GeneralRe: PHP Member Pages... Need major help... Pin
fly90423-Jan-10 11:29
fly90423-Jan-10 11:29 
GeneralRe: PHP Member Pages... Need major help... Pin
fly90423-Jan-10 11:23
fly90423-Jan-10 11:23 
GeneralRe: PHP Member Pages... Need major help... Pin
thebiostyle23-Jan-10 11:48
thebiostyle23-Jan-10 11:48 
GeneralRe: PHP Member Pages... Need major help... Pin
thebiostyle24-Jan-10 7:07
thebiostyle24-Jan-10 7:07 
AnswerRe: PHP Member Pages... Need major help... Pin
Graham Breach24-Jan-10 7:57
Graham Breach24-Jan-10 7:57 
GeneralRe: PHP Member Pages... Need major help... Pin
thebiostyle24-Jan-10 8:34
thebiostyle24-Jan-10 8:34 
QuestionAdd two difference items to shopping card-Paypal Pin
tktuan28-Dec-09 16:08
tktuan28-Dec-09 16:08 
AnswerRe: Add two difference items to shopping card-Paypal Pin
cjoki29-Dec-09 4:40
cjoki29-Dec-09 4:40 
GeneralRe: Add two difference items to shopping card-Paypal Pin
tktuan29-Dec-09 15:05
tktuan29-Dec-09 15:05 
GeneralRe: Add two difference items to shopping card-Paypal Pin
cjoki30-Dec-09 4:42
cjoki30-Dec-09 4:42 
GeneralRe: Add two difference items to shopping card-Paypal [modified] Pin
tktuan30-Dec-09 15:20
tktuan30-Dec-09 15:20 
AnswerRe: Add two difference items to shopping card-Paypal Pin
vorotnik27-Jan-10 6:58
vorotnik27-Jan-10 6:58 
QuestionPython in Corpus Analysis Pin
ahmedshamim24-Dec-09 14:29
ahmedshamim24-Dec-09 14:29 
QuestionRadio Buttons Pin
thebiostyle24-Dec-09 8:56
thebiostyle24-Dec-09 8:56 
AnswerRe: Radio Buttons Pin
abushahin28-Dec-09 7:47
abushahin28-Dec-09 7:47 
GeneralRe: Radio Buttons Pin
thebiostyle28-Dec-09 10:34
thebiostyle28-Dec-09 10:34 
GeneralRe: Radio Buttons Pin
cjoki29-Dec-09 4:32
cjoki29-Dec-09 4:32 
GeneralRe: Radio Buttons Pin
abushahin31-Dec-09 7:45
abushahin31-Dec-09 7:45 
AnswerRe: Radio Buttons (long answer) Pin
enhzflep29-Dec-09 14:14
enhzflep29-Dec-09 14:14 
GeneralRe: Radio Buttons (long answer) Pin
thebiostyle30-Dec-09 7:31
thebiostyle30-Dec-09 7:31 
GeneralRe: Radio Buttons (long answer) Pin
enhzflep30-Dec-09 11:56
enhzflep30-Dec-09 11:56 
GeneralRe: Radio Buttons (long answer) Pin
thebiostyle30-Dec-09 12:17
thebiostyle30-Dec-09 12:17 
Well, seeing as I don't normally use Dreamweaver, I mainly use Notepad.   I am just gonna give you the source for the poll page, so you can help me implement the code into it.   Thanks.

--------------------------------------------------------------------------------------------------------------------------------------
<?php
            $title = "What is your Preferred Browser?";
            $choices = array("Firefox",  
                                       "Chrome",
                                       "Navigator",
                                       "Safari",
                                       "Opera",
                                       "Inernet Explorer");
?>
<body>
<h3><?php echo $title; ?></h3>
<p>
      <form action="RESULTSPAGE.PHP" method="post">
<?php
   //print possible answers
   for($i=0;$i<count($choices);$i++){
      ?><input type="radio" name="vote" value="<?php echo $i; ?>"> <?php echo $choices[$i]; ?><br /><?php
   }
?>
      <p><input type="submit" value="Vote" style="border-color: rgb(255, 0, 0); color: rgb(255, 0, 0); font-family: Arial; font-weight: bold; font-size: 12px; background-color: rgb(0, 0, 0);"></p>
   </form>
</p>
--------------------------------------------------------------------------------------------------------------------------------------

Thanks for all your help.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.