Jump to content

need help with php get


deansaddigh

Recommended Posts

i have a option box that gets filled with dates, but how do i get once the option value has been clicked for example they select 2007 from the drop down, it then posts that value back to the same page.

 

I have this so far but doesnt do anything when clicked.

 

<option value="<?=$this_page.'&year'?>" <? if($_GET{'year'}){echo 'selected';}?>><?=$year?></option>

 

Thank in advance

Link to comment
https://forums.phpfreaks.com/topic/187938-need-help-with-php-get/
Share on other sites

Assuming your select is part of a form, and the form is submitted after selection, then

if the form is 'post'ed, the value attribute of the selected option will be available after

submit, as $_POST['selectname']  where selectname is whatever name you have given

the <select> that surrounds the <option>s

 

Best regards

John

Ok so i found some javascript to do it, but its still not working.

 

<form action="archivedBookings.php" method="get" onchange="this.form.submit(archivedBookings.php);">';
						 echo '<select name="year" class="dropdown" >';

Is this correct where i have put it ?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.