


Summary of 14 Things PHP Beginners Should Pay Attention to_PHP Tutorial
Today I will give you a summary of the headaches for PHP beginners. The 14 questions raised below hope to be helpful to PHP beginners.
1. Variables cannot be transferred between pages
The automatic global variables of get, post, and session are turned off in the latest PHP version, so the submitted variables must be obtained from the previous page. Use $_GET['foo'], $_POST['foo'], $_SESSION['foo'] to get it. 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. When apache2 uses the get method to pass Chinese parameters under Win32, there will be an error. Internal error
Solution: "test.php?a=".urlencode(Hello)."&b=".urlencode(Hello)
3. The session under win32 cannot Works normally
php.ini default session.save_path = /tmp
This is obviously a configuration under Linux. Under win32, php cannot read and write session files, causing the session to be unusable
Just change it to an absolute path, for example session.save_path = c:windowstemp
4. Display error message
When display_errors of php.ini = On and error_reporting = E_ALL , will 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 will be 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
Sendmail configured under Linux can be sent. Under win32, you need to call the smtp server to send emails. Modify SMTP = ip in php.ini //ip is an smtp server without verification function (hard to find on the Internet), php The best solution for sending emails is to use a socket to send directly to the other party's email server without a forwarding 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"
Change 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. You are currently There is a blank line in front of the file 3. You may have INCLUDEd a file and there is a blank line at the end of the file or this error will occur in the output.
8. There is 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 in Installation on 2003 (I would like to ask experts for advice on how to install ISAPI)
PHP4’s php4isapi.dll seems to conflict with 2003, so it can only be installed in CGI mode:
Step 1, first www.php. NET, I installed: php-4.2.3-installer.exe. You can also find the latest version and make sure you have IIS6.0 before installing php-4.2.3-installer.exe. is started and accessible. After installation, go to the default website-->Application configuration;
Step 2: Click web service extension-->New web service extension;
Step 3: Extension name-- >php, then add;
Step 4: Find the path to php.exe and add it;
Step 5: Confirm;
Step 6: Select php service extension and click Allow.
Total 2 pages:
Previous page
- 1
- 2
- Next page
www.bkjia.com

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.

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

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

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

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