PHP enthusiasts to see: beginners headache Problem Summary

Source: Internet
Author: User
Tags empty flock header mysql mysql query variables php and table name

variable get,post,session cannot be passed between "1" pages in the latest version of PHP the automatic global variable is turned off, so to obtain the submitted variable from the previous page use $_get[' foo '],$_post[' foo '],$_ session[' foo '] to get
Of course, you can also modify the automatic global variable to open (php.ini changed to Register_globals = ON), and it is better to force yourself to be familiar with the new wording, considering compatibility.

"2" Win32 under the apache2 to pass the Chinese parameter with get method will make an error
test.php?a= Hello &b= You
Passing parameters can cause an internal error
Solution: "Test.php?a=". UrlEncode (Hello). " &b= ". UrlEncode (you are also good)
.............

The session under "3" Win32 does not work properly
php.ini default Session.save_path =/tmp
This is obviously a Linux configuration, Win32 under the PHP cannot read and write session file causes session not to use
Change it to an absolute path, such as Session.save_path = C:\Windows\Temp

"4" displays an error message
When PHP.ini's display_errors = on and error_reporting = E_all, all errors and prompts are displayed, and it is best to turn on the error when debugging, if you use the previous PHP error message is mostly about undefined variables. Variables are prompted before they are assigned, and the solution is to detect or mask
For example, $foo can be displayed, if (Isset ($foo)) echo $foo or echo @ $foo

"5" Win32 Mail () cannot send e-mail
SendMail configured under Linux can be sent, under Win32 need to invoke the SMTP server to send e-mail
modifying php.ini SMTP = IP//ip is an SMTP server without authentication (hard to find on the web)
The best solution for PHP to send mail is to send it directly to the other email server without forwarding the server

"6" first installed MySQL if you do not set a password, you should use
Update Mysql.user set password= "YourPassword" where user= "root"
Modify password

"7" header already sent
This error usually occurs when you use the header, he may be several reasons: 1, you are Pring or Echo 2 before using header. You have a blank line 3 in front of your current file. You may include a file with a blank line at the end of the file, or an error in the output.

no change after "8" Change php.ini
Restart the Web server, such as Iis,apache, and so on before applying the latest settings

"9" PHP installed on 2003 (ISAPI installation method kindly advise)
PHP4 's php4isapi.dll seems to be in conflict with 2003 and can only be installed in CGI mode
Step One, First www.php.net in a setup program, I was installed is: Php-4.2.3-installer.exe, you can also go to find the latest version, in the installation of Php-4.2.3-installer.exe before you ensure that your IIS6.0 started, and can access. After installation,--> application configuration on the default Web site
Step Two: Click the Web Services extension--> to create a new Web service extension.
Step three: Extension-->php, and then add
Step four: Find the path of php.exe add up.
Step five: Be sure!
Step Six: Select the service Extensions for PHP and click Allow.

"10"
Sometimes the SQL statement does not work and the database operation fails
The easiest way to debug, echo-SQL, look at the value of the variable to get no

The difference between "11" include and require
There is not much difference between the two, if the file you want to include does not exist, include prompts notice, and then continue to execute the following statement, require prompt for fatal error and exit
As far as I have tested, they are all included in the Win32 platform, so it is best not to have include or require statements in the included files, which can cause directory clutter. Maybe *nux under different circumstances, not yet tested.
If a file does not want to be included multiple times, you can use include_once or require_once## read to write document data
function R ($file _name) {
$filenum = @fopen ($file _name, "R");
@flock ($filenum, lock_sh);
$file _data= @fread ($filenum, FileSize ($file _name));
@fclose ($filenum);
return $file _data;
}
function W ($file _name, $data, $method = "W") {
$filenum = @fopen ($file _name, $method);
Flock ($filenum, LOCK_EX);
$file _data=fwrite ($filenum, $data);
Fclose ($filenum);
return $file _data;
}

The difference between "12" isset () and empty ()
Both are used for test variables.
But Isset () is the test whether the variable is assigned, and empty () is to test whether a variable that has already been assigned is empty
If a variable is not assigned to the reference in PHP is allowed, but there will be notice hint
If a variable is null, $foo = "" or $foo=0 or $foo =false, then empty ($foo) returns True, Isset ($foo) returns True, which means that the null value does not unregister a variable.
To unregister a variable, you can use Unset ($foo) or $foo=null

"13" MySQL query statement contains a keyword
PHP query MySQL, sometimes MySQL table name or column name will have the keyword
There will be errors in the query. For example, the table name is Order, the query will be wrong
The simple way is to make a distinction between the table name or column name in the SQL statement plus the ' [Tab key].
For example, select * from ' order '

"14" Method of uploading multiple files at once via HTTP protocol
There are two ideas, which are two implementations of the same method. Specific procedures need to design their own
1, set up multiple file input boxes in form, and name them by array, as follows:
<form action= "" method=post>
<input Type=file name=usefile[]>
<input Type=file name=usefile[]>
<input Type=file name=usefile[]>
</form>
This way, the following tests are done on the server side
echo "<pre>";
Print_r ($_files);
echo "</pre>";

1, set up multiple file input boxes in form, but with different names, as follows:
<form action= "" method=post>
<input Type=file name=usefile_a>
<input Type=file name=usefile_b>
<input Type=file name=usefile_c>
</form>
Do the same test on the server side:
echo "<pre>";
Print_r ($_files);
echo "</pre>";



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.