Jump to content

Php Dynamic Drop Down Form Selected?


NewcastleFan

Recommended Posts

Hey guys,

 

I'm trying to make the value pulled from the mysql database be the selected option which the list is dynamically selected from a directory.

 

 <?php 
  function list_files($the_path) { 
  $handle = dir($the_path); 
   while ($file = $handle->read()) { 
 if (($file != ".") && ($file != "..")) { 
     $options .= "<option value='$file' selected='$picked'>$file</option>\n"; 
 }   
   } 
       return $options; 
  } 
 ?> 
 <select name="tempname"> 
 <?php echo list_files("../templates/pages/"); ?> 
 </select>

 

I'm trying to make the value of $picked to be "true". I've pulled the file name from the database and it is stored in $tempname and I'm trying to use something like:

 

<?php
if ($file == $tempname) {
 $picked = "true";
}
?>

 

But I can't seem to get it to work, I don't think the $file variable can be edited in the function.

 

Anyone got any ideas or suggestions?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.