Тэги:
#PHP #HTTP #headers #errorКомментарии:
That doesn't work lol
ОтветитьThanks for helping
ОтветитьExcellent! - exactly what I needed to fix that same error. Thank you.
ОтветитьGreat! I remembered seeing this video a long time ago..explain very well the question why it good pratice leave php tags open.👌
ОтветитьThe first one with a good explanation. Big Thanks!!!
ОтветитьGreat, but php parsing should be smarter than being this buggy. This is just stupid.
Ответить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
thanks
ОтветитьExcellent Excellent. Worked perfectly
ОтветитьIt was really helpful, Thanks mate
ОтветитьThank you so much sir...
Ответитьgreat you make my day!
Ответитьthank you.
Ответитьufff thanks...... I was suffering with this problem
Ответить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?
Thanks, so then how do i do redirects?For example once i click a button i need to go to another page? ?
Ответить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
thank you soooooooooooooooooooooooooooooooooooooooooooo much you are the best programmer
ОтветитьYou are just great sir..tysm..
ОтветитьThank You , Sir! Very Much. Your Video deserves more Views. Thank You Once Again. Great Help especially for beginners. 🙏Lots of respect and gratitude❤️
ОтветитьThanks for your help.
ОтветитьExcellent, thanks for the perfect explanation.
Ответитьthanks this error was bugging me a lot
ОтветитьI already use ob_start(); and ob_end_flush();
Ответить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!";
}
}
?>
I'm still getting error can you please help me ??
Ответитьperfect
ОтветитьDave is the most brilliant PHP teacher so far ..ill definitely buy another course from him once i'm through with this PHP course
ОтветитьPeachy!
May I ask what editor is your fav for php?
Excellent explanation and demonstration.
Ответить