


PHP uses the solution to invalid header jump, phpheader jump fails_PHP tutorial
Solution to PHP header jump failure, phpheader jump failure
The example in this article describes the solution to the failure of header jump using PHP, and is shared with everyone for your reference. The specific method analysis is as follows:
1. Question:
Today’s header("Location: $url"), in the past it was always possible to jump, but today it does not move, it just outputs the result. In the past, I had to confirm and check whether the value of $url was obtained correctly, so add it in front Echo $url; is used for debugging, which results in the header function being invalid.
2. Solution:
When using header("location:test.php") to jump in PHP, please pay attention to the following points:
1. There cannot be a space between location and ":", otherwise an error will occur.//phpfensi.com
2. There cannot be any output before using the header, and there must be no space after the tag "?>" in the include page.
3. The PHP code after the header will also be executed.
No content can be output before PHP's header jumps, because PHP has already sent the HTTP header information to the browser when it starts executing, and changes are no longer allowed after that.
But if you have to process the header information after output, you can use ob_start() ob_end_flush() to cache the content to be sent, and wait until the header continues before sending the content.
Or a simpler way, modify php.ini, find output_buffering=Off and change it to output_buffering=4096.
I hope this article will be helpful to everyone’s PHP programming design.
If you are sure to use the post method to submit, it is a very complicated matter, because PHP is needed to simulate post submission. You can use fsockopen to handle it. I can teach you the specific solution.
Another method is to use the get solution. Relatively speaking, it is super simple. When direct redirection, just convert the data from the post into the get header.
Another solution is to use ajax in the front end. Ajax submits data to b.php on page a. If the return value indicates that the verification is not passed, then the page is transferred to b.php using js. If the return value indicates that the verification is passed, the data of the current post is submitted to c again. .php.
Encoding problem. Change charset=UTF-8 to charset=GB2312

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

The onBlur event that implements Avue-crud row editing in the Avue component library manually triggers the Avue-crud component. It provides convenient in-line editing functions, but sometimes we need to...

Why doesn't my code take effect when using RxJS to operate on streams? Learning RxJS...

How to specify the version of local packages in pnpm and monorepo projects When managing projects using pnpm and monorepo, you often encounter the need to share local areas between projects...

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

The ElementPlus table component max-height property invalidation and solution when using Element...

The Blur event that implements Avue-Crud table row editing in the Avue component library manually triggers the Avue-Crud component to provide convenient table data editing functions, but its row editing...
