Home Backend Development PHP Tutorial The Fourteen Most Confusing Questions for PHP Beginners_PHP Tutorial

The Fourteen Most Confusing Questions for PHP Beginners_PHP Tutorial

Jul 13, 2016 pm 05:12 PM
get php post session transfer beginner variable of page

【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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/629501.htmlTechArticle[1] Variables get, post, session cannot be passed between pages. In the latest php version, the automatic global variable is is closed, so to get the submitted variables from the previous page, use $_GET['fo...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles