


The Fourteen Most Confusing Questions for PHP Beginners_PHP Tutorial
【1】Variables cannot be passed between pages
Get, post, session automatic global variables are turned off in the latest PHP version, so to get the submitted variables from the previous page, use $_GET['foo'] ,$_POST['foo'],$_SESSION['foo'] to get. Of course, you can also modify the automatic global variables to be on (php.ini is changed to register_globals
= On); considering compatibility, it is better to force yourself to become familiar with the new writing method.
[2] Using the get method to pass Chinese parameters to apache2 under Win32 will cause an error:
test.php?a=Hello&b=Hello
Passing parameters will cause an internal error
Solution: "test.php?a=".urlencode(Hello)."&b=".urlencode(Hello)
.............
【 3] The session under win32 does not work properly
The default session.save_path of php.ini = /tmp
This is obviously the configuration under linux. PHP cannot read and write the session file under win32, causing the session to be unusable. Please change it. Just make it an absolute path, for example, session.save_path
= c:windows emp
[4] Display error message
When display_errors in php.ini = On and error_reporting =
E_ALL, the Display all errors and prompts. It is best to turn it on during debugging for error correction. If you use the previous PHP writing method, most of the error messages are about undefined variables. There will be a prompt when a variable is called before it is assigned a value. The solution is to detect or shield it.
For example, to display $foo, you can if(isset($foo)) echo $foo or echo @$foo
【5】mail() cannot send emails under Win32
Configure sendmail under Linux It can be sent. Under win32, you need to call the smtp server to send emails. Modify the SMTP of php.ini = ip
//ip is an smtp server without verification function (hard to find online)
PHP sends emails The best solution is to use socket to send directly to the other party's email server without forwarding the server.
【6】If the password is not set for the initial installation of mysql, you should use update mysql.user set password="yourpassword" where
user="root" to change the password
【7】header already sent
This error usually occurs when you use HEADER. It may be due to several reasons: 1. You PRING or ECHO before using HEADER. 2. There is a blank line in front of your current file. 3. You may have INCLUDEd a file. The file This error will also occur if there is a blank line at the end or the output. !
【8】No change after changing php.ini
Restart the web server, such as IIS, Apache, etc., and then the latest settings will be applied.
【9】php is installed on 2003 (the installation method of ISAPI is requested by experts for advice)
PHP4’s php4isapi.dll seems to have some conflicts with 2003 and can only be installed in CGI mode

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
