ebchost Posted January 1, 2012 Share Posted January 1, 2012 I try somthing like this, but i have problem <?php $path = $_SERVER['DOCUMENT_ROOT']; $path .= "/resources/init.php"; include_once($path); $formacije = "SELECT * FROM `man_formacije` ORDER BY `id` ASC"; $rezultati = mysql_query($formacije) or die (mysql_error()); $dropdown = "<select name='formacija'>"; ?> <select> <?php while($row = mysql_fetch_array($rezultati)) { $id = $row['id']; $naziv = $row['naziv']; $meta = $_GET['id']; ?> <option value="<?php echo $id; ?>"><?php echo $naziv; ?></option> <?php } ?> </select> <?php if($meta) { echo "<br> $id"; } else echo "error"; ?> I have error message, or if i put ($meta = $_GET['id'] part of code, below select (combo box) i have echo 20 how to echo (or get) corect value of selctet data from combo box ? Quote Link to comment Share on other sites More sharing options...
scootstah Posted January 1, 2012 Share Posted January 1, 2012 You need to give your <select> a name, and then access it from the $_POST superglobal. So like echo $_POST['selectname']; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.