Jump to content
  • 0

Как сделать чтобы поле input...


chups
 Share

Question

У меня такая проблема есть два файла html на первом есть определенный текст и кнопка типа ссылка на вторую страничку на которой расположен input. Так вот вопрос мне нужно чтобы при нажатии кнопки на первой стр. текст попадал в input на второй стр. как это сделать? ПОМОГИТЕ ПОЖАЛУЙСТА!!!!!

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

на первой странице текст который должен поподать в инпут поместить в форму, а форму отправить на 2 страничку - там ПХПом вытащить из массива $_Post этот текст и давбить его жаваскриптлм в инпут

Link to comment
Share on other sites

  • 0
на первой странице текст который должен поподать в инпут поместить в форму, а форму отправить на 2 страничку - там ПХПом вытащить из массива $_Post этот текст и давбить его жаваскриптлм в инпут

а как это выглядит не подскажете

Link to comment
Share on other sites

  • 0
1 страница

<form action='2страница.php' method='post'>
<input type='text' name='text' />
<submit type='submit' name='submit' />
</form

2 страница
<script type='text/javascript'>
document.form1.button1.value ='<?php echo $_POST['name'] ?>';
</script>
<form name='form1'>
<input type='text' name='button1' /> - тот самый инпут
</form>

Link to comment
Share on other sites

  • 0

спасибо попробую

1 страница

<form action='2страница.php' method='post'>
<input type='text' name='text' />
<submit type='submit' name='submit' />
</form

2 страница
<script type='text/javascript'>
document.form1.button1.value ='<?php echo $_POST['name'] ?>';
</script>
<form name='form1'>
<input type='text' name='button1' /> - тот самый инпут
</form>

а что в пхп писать не понимаю

Link to comment
Share on other sites

  • 0
второй странице сменить расширение на пхп

Само собой при условии поддержки сервером :)

спс пробую :D

второй странице сменить расширение на пхп

Само собой при условии поддержки сервером :)

что то не выходит(((( открывается пхп страничка а в инпуте никуя(((((

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy