I want to convert this list. All the data stored into .txt file.

one
two
three

into this format

<option value="one">one</option>
<option value="two">two</option>
etc

thanks

link|improve this question

4  
"Convert" using what platform / program / technology? – Pekka Jan 1 '11 at 11:17
2  
And who upvotes a completely unanswerable question like this? We really have an upvote inflation. – Pekka Jan 1 '11 at 11:21
feedback

1 Answer

up vote 1 down vote accepted

PHP:

<?php

  $fc = file_get_contents(FILE_PATH);
  $lines = explode("\n", $fc);

  $html = '<select>';
  foreach($lines as $line)
     $html .= '<option value="' . $line . '">' . $line . '</option>';

  $html .= '</select>';
  echo $html;

Note: You cannot do this on the client side with JavaScript.

link|improve this answer
thanks so much. – no_freedom Jan 1 '11 at 18:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.