Файл не записывается после нажатия кнопки отправки

 <?php
 if(isset($_POST['submit_btn']))
 /////code here//////
 /////the program actually gets inside this if statement after the user submits login info

 if(strpos(file_get_contents("accounts.txt"),$text) !== false) : ?>

 /////html form displays here...and the submit button name of the form is submitbtn//////
<input type="submit" name="submitbtn" value="Submit" onclick="giveaway()">

 <?php endif; ?>    

 <?php
 if(isset($_POST['submitbtn']))
 //////the content here never runs, regardless if I click submit or not/////

Кто-нибудь знает, почему, когда я нажимаю на кнопку отправки формы, PHP-код после этого не запускается? Он никогда не попадет внутрь оператора if

1 ответ

Решение

Опечатка: submit_btn против submitbtn

<?php
 if(isset($_POST['submitbtn']))
 /////code here//////
 /////the program actually gets inside this if statement after the user submits login info

 if(strpos(file_get_contents("accounts.txt"),$text) !== false) : ?>

 /////html form displays here...and the submit button name of the form is submitbtn//////
<input type="submit" name="submitbtn" value="Submit" onclick="giveaway()">

 <?php endif; ?>    

 <?php
 if(isset($_POST['submitbtn']))
 //////the content here never runs, regardless if I click submit or not/////
Другие вопросы по тегам