Search found 5 matches

by bhb
Thu Dec 19, 2013 10:10 am
Forum: PHP - Code
Topic: How to load value to text field when choose value in select
Replies: 1
Views: 562

Re: How to load value to text field when choose value in sel

thank for read and help of everyone, here is code

Code: Select all

<script type="text/javascript" language="javascript">
$("#chedo").change(function(){
    var selected = $("#chedo").val();
    $("#lenh").val(selected);
});
</script>
by bhb
Thu Dec 19, 2013 8:26 am
Forum: PHP - Code
Topic: How to load value to text field when choose value in select
Replies: 1
Views: 562

How to load value to text field when choose value in select

Hi every one, I have problem need help that, I have a form have 1 select filed and 1 text field, I want when I choose value in option of select the text field will load/appear value in proportion to value of select, example in picture when I choose "B" in select field, the value in text fi...
by bhb
Tue Dec 17, 2013 11:33 am
Forum: PHP - Code
Topic: How to Open & Edit file in List Content of Directory.
Replies: 4
Views: 1813

Re: How to Open & Edit file in List Content of Directory.

I still don't know how to when I click to file name in list content of directory, it content have show in textarea, what event click to to it ? I have read a example simple below but it open and save file have direct directory. <?php $filename = isset($_GET['file']) ? $_GET['file'] : ''; $directory ...
by bhb
Sat Dec 07, 2013 11:05 am
Forum: PHP - Code
Topic: How to Open & Edit file in List Content of Directory.
Replies: 4
Views: 1813

Re: How to Open & Edit file in List Content of Directory.

Who known ? Please give me some answer?
by bhb
Sat Dec 07, 2013 7:36 am
Forum: PHP - Code
Topic: How to Open & Edit file in List Content of Directory.
Replies: 4
Views: 1813

How to Open & Edit file in List Content of Directory.

Hello Everyone, I’m having a page php have function list content of directory in computer such as c:/folder after that I can open, write and save any file I want in list file. Now I have complete to list content of directory, now I want to click any file in list file of derectory to open in a textar...