- How to Link Submit Button to Another Page in PHP
- Link Submit button to Another page using forms Tags in PHP
- Link Submit button using Ancher Tags in PHP
- Link Submit button to Another page using JavaScript
- FAQs about : How to Link Submit Button to Another Page in PHP
- Submit button redirect to another page HTML
- Кнопка как ссылка
- 10 ответов на этот вопрос
- Рекомендованные сообщения
- Присоединяйтесь к обсуждению
- Обсуждения
- Форум PHP программистов ► PHP практикум ► PHP для начинающих
How to Link Submit Button to Another Page in PHP
If you are wondering about, How to link submit button to another page using PHP. Then you have come to the Right Place.
Because In this Tutorial, we are going to Link Submit button to another page using PHP.
First of all, PHP is a Server Side Scripting Language. So we can’t run Button Clicks Events using PHP but we can use HTML Anchor, Form or JavaScript inside PHP to Link One page with Another Page.
Link Submit button to Another page using forms Tags in PHP
In HTML’s Form tag we can Link submit Button to another page using HTML Form’s Action Attribute.
Where we have to Write our File Path inside HTML form’s action=”” attribute.
After that when the user clicks the Form Button, It will redirect that user to another page.
Link Submit button using Ancher Tags in PHP
We can use Anchor tags to Link a Submit button to another page in PHP. We need to Write/Declare Submit button between Anchor tag’s Starting and Closing tags.
By using Anchor tag’s href=”” attribute we can give a Path where we want to Link our Submit Button.
Link Submit button to Another page using JavaScript
If you don’t want to use Form tag or Ancher tags to Link Submit button to another page in PHP then we can use JavaScript for that.
In JavaScript, we create a Function which will handle all the Data like Page Path where we want to Link our Submit Button. The function name, By using that Function name we can call that function through HTML onClick attribute. Which we call the assigned function and we can redirect our users from one page to another by clicking on the Submit Button.
FAQs about : How to Link Submit Button to Another Page in PHP
Submit button redirect to another page HTML
To redirect users to another page using Submit button we can use HTML’s Ancher tag or Form tags for that.
In Anchor tags and Form Tags, we need to Write/Declare our Submit button between Anchor tags or Form Tags.
Which will make our Submit button Clickable. And by using Anchor and Form tag’s href attribute we can Specify the Path where we want our users to redirect after clicking the Submit Button.
index.html [Redirect using HTML Form Tags]
index.html [Redirect using HTML Anchor Tags]
Кнопка как ссылка
Здравствуйте. Подскажите, как сделать, чтобы при нажатии на эту кнопку был переход по ссылке?
Изменено 30 октября 2011 пользователем Motoko Kusanagi
Ссылка на комментарий
Поделиться на других сайтах
10 ответов на этот вопрос
Рекомендованные сообщения
Присоединяйтесь к обсуждению
Вы можете опубликовать сообщение сейчас, а зарегистрироваться позже. Если у вас есть аккаунт, войдите в него для написания от своего имени.
Примечание: вашему сообщению потребуется утверждение модератора, прежде чем оно станет доступным.
Обсуждения
http://htmlbook.ru/html/area на одной картинке можно организовать несколько областей ссылок ведущих на разные страницы
margin внутри таблицы не работает, кста еще можно вот так реализовать так заливка ячеек будет корректно работать, если она нужна будет
row 1 cell 1 | row 1 cell 2 | row 1 cell 3 must contain several lines |
row 2 cell 1 | row 2 cell 2 | |
row 3 cell 1 | row 3 cell 2 | |
row 4 cell 1 | row 4 cell 2 | |
row 5 cell 1 | row 5 cell 2 | row 5 cell 3 |
row 6 cell 1 | row 6 cell 2 | row 5 cell 3 |
если не критично еще можно использовать обертку внутри ячеек, и с ней много чего можно дополнительного реализовать в таблицах
Switch74 Спасибо, второй вариант как раз то, что хотелось. Не понятно только, почему margin-top не работает, пробовал задавать и для клеточек, и для всей строки. А про padding как-то не подумал.
тогда как выше предложили пустую строку
row 1 cell 1 | row 1 cell 2 | row 1 cell 3 must contain several lines |
row 2 cell 1 | row 2 cell 2 | |
row 3 cell 1 | row 3 cell 2 | |
row 4 cell 1 | row 4 cell 2 | |
row 5 cell 1 | row 5 cell 2 | row 5 cell 3 |
row 6 cell 1 | row 6 cell 2 | row 5 cell 3 |
или если подсветка ячеек не обязательна, то можно так
row 1 cell 1 | row 1 cell 2 | row 1 cell 3 must contain several lines |
row 2 cell 1 | row 2 cell 2 | |
row 3 cell 1 | row 3 cell 2 | |
row 4 cell 1 | row 4 cell 2 | |
row 5 cell 1 | row 5 cell 2 | row 5 cell 3 |
row 6 cell 1 | row 6 cell 2 | row 5 cell 3 |
Форум PHP программистов ► PHP практикум ► PHP для начинающих
Профиль
Группа: Пользователь
Сообщений: 7
Пользователь №: 43246
На форуме:
Карма:
if( file_exists('./counter.txt') )
$c = intval(trim(file_get_contents('./counter.txt')));
>
else
$c = 0;
>
if( isset($_POST['button_click']) AND $_POST['button_click'] )
$c++;
$fh = fopen('./counter.txt', 'w+');
fwrite($fh, $c);
fclose($fh);
>
?>
action=" $_SERVER['PHP_SELF'];?>" method="POST">
type="hidden" name="button_click" value="1" />
type="submit" name="submit" value="Кнопка!" />
id="writecounter"> $c;?>