How to fix the "headers already sent" error: omit the closing tag in pure PHP scripts

How to fix the "headers already sent" error: omit the closing tag in pure PHP scripts

Dave Hollingworth

55 лет назад

39,592 Просмотров

Full PHP course: ➤ https://davehollingworth.net/phpy

It's best practice to omit the PHP closing tag for files that just contain PHP.

This is because it's too easy to insert whitespace after the closing tag. If you're using a function like header, session_start or setcookie, which send HTTP headers, no whitespace can be sent before the headers. If it is, you get the "headers already sent" error.

Resources shown in the video:
http://php.net/manual/en/language.basic-syntax.phptags.php
https://www.php-fig.org/psr/psr-2/
http://php.net/manual/en/outcontrol.configuration.php#ini.output-buffering

Тэги:

#PHP #HTTP #headers #error
Ссылки и html тэги не поддерживаются


Комментарии:

@jimburns7549
@jimburns7549 - 20.04.2018 17:09

Excellent explanation and demonstration.

Ответить
@music-unleashed
@music-unleashed - 20.04.2018 22:11

Peachy!

May I ask what editor is your fav for php?

Ответить
@moses.muchemi
@moses.muchemi - 22.04.2018 12:52

Dave is the most brilliant PHP teacher so far ..ill definitely buy another course from him once i'm through with this PHP course

Ответить
@mostafabodaghabadi6394
@mostafabodaghabadi6394 - 27.04.2018 01:57

perfect

Ответить
@webmania5956
@webmania5956 - 22.10.2018 14:33

I'm still getting error can you please help me ??

Ответить
@webmania5956
@webmania5956 - 22.10.2018 14:34

This is the code

<?php

require_once "database/dbConnection.php";

if (isset($_POST['newsletter'])) {

$email = $_POST['email'];
$insert_query = "INSERT INTO `newsletter`(`email`)VALUES ('$email')";
$run_query = mysqli_query($connection, $insert_query);

if ($run_query) {

header('Location: subscribe.php') ;
}
else {
$error = "Email Already Exists!";
}

}

?>

Ответить
@webmania5956
@webmania5956 - 22.10.2018 14:35

I already use ob_start(); and ob_end_flush();

Ответить
@hiibrain
@hiibrain - 04.12.2018 01:11

thanks this error was bugging me a lot

Ответить
@ArinYazilim
@ArinYazilim - 10.03.2019 15:17

Excellent, thanks for the perfect explanation.

Ответить
@slapmyfunkybass
@slapmyfunkybass - 19.05.2019 23:16

Thanks for your help.

Ответить
@anantsaini
@anantsaini - 05.07.2019 09:57

Thank You , Sir! Very Much. Your Video deserves more Views. Thank You Once Again. Great Help especially for beginners. 🙏Lots of respect and gratitude❤️

Ответить
@priyankaabdagire997
@priyankaabdagire997 - 24.11.2019 22:35

You are just great sir..tysm..

Ответить
@abdulkreemsalem9644
@abdulkreemsalem9644 - 26.11.2019 14:57

thank you soooooooooooooooooooooooooooooooooooooooooooo much you are the best programmer

Ответить
@andresj4353
@andresj4353 - 04.01.2020 10:00

I had a space between the start of the script and the "<?php" tag, like this
<?php
this also gets you the same trouble. THANKS

Ответить
@anandhu5082
@anandhu5082 - 07.06.2020 14:12

Thanks, so then how do i do redirects?For example once i click a button i need to go to another page? ?

Ответить
@arshpreetkaur3032
@arshpreetkaur3032 - 22.07.2020 10:39

The plugin generated 814 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
i have seen in my plugin , what i should do?

Ответить
@ivanestevez5575
@ivanestevez5575 - 26.07.2020 22:54

ufff thanks...... I was suffering with this problem

Ответить
@ravenkavoori
@ravenkavoori - 11.08.2020 19:51

thank you.

Ответить
@dastgirakhtar9782
@dastgirakhtar9782 - 15.10.2020 18:10

great you make my day!

Ответить
@rajmeher7866
@rajmeher7866 - 27.01.2021 09:52

Thank you so much sir...

Ответить
@prashantdwivedi9527
@prashantdwivedi9527 - 10.05.2021 10:40

It was really helpful, Thanks mate

Ответить
@fivegreatthings4416
@fivegreatthings4416 - 18.07.2021 20:10

Excellent Excellent. Worked perfectly

Ответить
@akshaysb526
@akshaysb526 - 31.08.2021 11:34

thanks

Ответить
@jeremihlarson6987
@jeremihlarson6987 - 10.02.2022 10:13

Just do it this way
At the top of your file write
?php
Ob_start();
?
Then on your header code
Ob_end_flush();
It will 100% work

Ответить
@phicomingatya
@phicomingatya - 18.03.2022 01:00

Great, but php parsing should be smarter than being this buggy. This is just stupid.

Ответить
@Sashad2003
@Sashad2003 - 17.08.2022 02:26

The first one with a good explanation. Big Thanks!!!

Ответить
@FedericoLomazzi-elettronica
@FedericoLomazzi-elettronica - 23.10.2022 12:49

Great! I remembered seeing this video a long time ago..explain very well the question why it good pratice leave php tags open.👌

Ответить
@MauriceCalis
@MauriceCalis - 24.11.2022 03:48

Excellent! - exactly what I needed to fix that same error. Thank you.

Ответить
@Smiling_Ballers
@Smiling_Ballers - 05.12.2022 01:46

Thanks for helping

Ответить
@SirMika9
@SirMika9 - 12.07.2023 23:05

That doesn't work lol

Ответить