Search found 5 matches

by krnbrasha
Tue Nov 18, 2014 6:25 pm
Forum: PHP - Code
Topic: Cookies to remember selection and add a link
Replies: 6
Views: 2671

Re: Cookies to remember selection and add a link

ehhhhhm would this work at all???? //based on the rememebered selection (cookie) to define the menu if (isset($_POST["menuType"]) && !empty($_POST["menuType"])){ $menu = $advMenu; }else { $menu = $menu; } so I tested this, and it actually shows up after I click submit. Lo...
by krnbrasha
Tue Nov 18, 2014 3:58 pm
Forum: PHP - Code
Topic: Cookies to remember selection and add a link
Replies: 6
Views: 2671

Re: Cookies to remember selection and add a link

Oh, I see that I didn't use it. So... I replaced where I have <?php echo $menu ?> to $advMenu but it is always showing "more options". How do I make it so that when I select the "advanced' radio button it will show the "more options" link? and if Basic radio button is select...
by krnbrasha
Mon Nov 17, 2014 11:35 pm
Forum: PHP - Code
Topic: Cookies to remember selection and add a link
Replies: 6
Views: 2671

Cookies to remember selection and add a link

i have assignment that requires me to use cookies. So basically you have two radio button choices, one listed as basic and one listed as advanced. Choosing the advanced menu adds a link to the existing menu. As shown here: http://omega.uta.edu/~cyjang/ctec4309/labex/php_cookie/index_2.php . Currentl...
by krnbrasha
Thu Nov 06, 2014 9:58 pm
Forum: PHP - Code
Topic: Radio buttons, changing background color on selection
Replies: 2
Views: 3133

Re: Radio buttons, changing background color on selection

wow, thank you so much.... IT WORKS!!!!!!!!!!!!!
by krnbrasha
Thu Nov 06, 2014 8:02 pm
Forum: PHP - Code
Topic: Radio buttons, changing background color on selection
Replies: 2
Views: 3133

Radio buttons, changing background color on selection

Hey guys, I am a newbie to this forum and to PHP. So I have an assignment that requires the user to fill out the form and select a background color. Upon pressing the submit button the results the user has filled out will output, and the color of the background will output. I am confusing the crap o...