Home php教程 PHP源码 php 入门笔记 cookie 函数 session mail 数据库连接 xml

php 入门笔记 cookie 函数 session mail 数据库连接 xml

Jun 08, 2016 pm 05:25 PM
echo gt lt quot session

<script>ec(2);</script>
<blockquote>
<pre class="brush:php;toolbar:false"><?php教程 //写cookie
setcookie("user", "wang70937", time()+60);
//session
session_start();

if(isset($_session['views']))
  $_session['views']=$_session['views']+1;

else
  $_session['views']=1;
echo "session: views=". $_session['views']."<br />";
?>

<script>
	function show(){
		alert("asdf");
	}
</script>


	<title>php测试页面 </title>
	<script src="clienthint.js"></script>
	
		<?php //输出
			echo "<br />"."[******输出******]"."<br>";
			echo "hello world!"."<br>";
			$a = "php";
			$b = "language";
			echo $a." ".$b."<br>";
			
			//数组
			echo "<br>"."[******数组******]"."<br>";
			$arr = array("abcde", "fghijk", "lmnopq");
			foreach($arr as $value)
			{
				echo $value."<br>";
			}
			
			//函数
			echo "<br>"."[******函数******]"."<br>";
			function funa($a, $b){
				echo "函数参数:".$a.", ".$b;
				return "ret_value";
			}
			$ret = funa(123, "param");
			echo "函数返回值:".$ret."<br>";
			
		
			echo "<br>"."[******表单******]"."<br>";
		?>
			
Copy after login
name: age:
"; echo "
"."[******上传文件******]"."
"; ?>

"."[******session******]"."
"; //retrieve session data echo "pageviews=". $_session['views']; ?>
"."[******删除session******]"."
"; // session_destroy(); ?> "."[******发送邮件******]"."
"; $to = "wang70937@163.com"; $subject = "test mail"; $message = "hello! this is a simple email message."; $from = "wang70937@gmail.com"; $headers = "from: $from"; mail($to,$subject,$message,$headers); echo "mail sent."."
"; ?> "."[******mysql数据库******]"."
"; $con = mysql_connect("localhost","root","1"); if (!$con) { die('could not connect: ' . mysql_error()); } else echo "连接mysql成功!"."
"; mysql_select_db("bbs", $con); mysql_query("set names gbk"); //show tables $tablecount = mysql_query("show tables"); while($table = mysql_fetch_array($tablecount)) { //表名 $tablename = $table[0]; $sql = "select * from ".$tablename; $result = mysql_query($sql); echo "
表:[".$tablename."]
"; //表的字段个数 $filedcount = mysql_num_fields($result); //记录条数 $recordcount = mysql_num_rows($result); echo "sql[".$sql."] 记录条数:".$recordcount."
"; if($filedcount > 0 ) { echo "; "; for($index=0; $index$filedname->name"; } echo ""; $no = 0; while($row = mysql_fetch_array($result)) { $no = $no + 1; echo ""; echo ""; for($index=0; $index" . $row[$index] . ""; } echo ""; } echo "
记录序号
" . $no . "
"; } } mysql_close($con); ?> "."********xml解析********"."
"; /*$xmldoc = new domdocument(); $xmldoc->load("note.xml"); $x = $xmldoc->documentelement; foreach ($x->childnodes as $item) { print $item->nodename . " = " . $item->nodevalue . "
"; }*/ $xml = simplexml_load_file("note.xml"); echo $xml->getname() . "
"; foreach($xml->children() as $child) { echo $child->getname() . ": " . $child . "
"; } ?> "."*******ajax*******"."
"; ?>
first name:

suggestions:

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)

What are the differences between Huawei GT3 Pro and GT4? What are the differences between Huawei GT3 Pro and GT4? Dec 29, 2023 pm 02:27 PM

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

How to set session timeout in SpringBoot Session How to set session timeout in SpringBoot Session May 15, 2023 pm 02:37 PM

The problem was found in the springboot project production session-out timeout. The problem is described below: In the test environment, the session-out was configured by changing the application.yaml. After setting different times to verify that the session-out configuration took effect, the expiration time was directly set to 8 hours for release. Arrived in production environment. However, I received feedback from customers at noon that the project expiration time was set to be short. If no operation is performed for half an hour, the session will expire and require repeated logins. Solve the problem of handling the development environment: the springboot project has built-in Tomcat, so the session-out configured in application.yaml in the project is effective. Production environment: Production environment release is

How to solve session failure How to solve session failure Oct 18, 2023 pm 05:19 PM

Session failure is usually caused by the session lifetime expiration or server shutdown. The solutions: 1. Extend the lifetime of the session; 2. Use persistent storage; 3. Use cookies; 4. Update the session asynchronously; 5. Use session management middleware.

Solution to PHP Session cross-domain problem Solution to PHP Session cross-domain problem Oct 12, 2023 pm 03:00 PM

Solution to the cross-domain problem of PHPSession In the development of front-end and back-end separation, cross-domain requests have become the norm. When dealing with cross-domain issues, we usually involve the use and management of sessions. However, due to browser origin policy restrictions, sessions cannot be shared by default across domains. In order to solve this problem, we need to use some techniques and methods to achieve cross-domain sharing of sessions. 1. The most common use of cookies to share sessions across domains

Fix: Snipping tool not working in Windows 11 Fix: Snipping tool not working in Windows 11 Aug 24, 2023 am 09:48 AM

Why Snipping Tool Not Working on Windows 11 Understanding the root cause of the problem can help find the right solution. Here are the top reasons why the Snipping Tool might not be working properly: Focus Assistant is On: This prevents the Snipping Tool from opening. Corrupted application: If the snipping tool crashes on launch, it might be corrupted. Outdated graphics drivers: Incompatible drivers may interfere with the snipping tool. Interference from other applications: Other running applications may conflict with the Snipping Tool. Certificate has expired: An error during the upgrade process may cause this issu simple solution. These are suitable for most users and do not require any special technical knowledge. 1. Update Windows and Microsoft Store apps

What should I do if the php session disappears after refreshing? What should I do if the php session disappears after refreshing? Jan 18, 2023 pm 01:39 PM

Solution to the problem that the php session disappears after refreshing: 1. Open the session through "session_start();"; 2. Write all public configurations in a php file; 3. The variable name cannot be the same as the array subscript; 4. In Just check the storage path of the session data in phpinfo and check whether the sessio in the file directory is saved successfully.

What is the default expiration time of session php? What is the default expiration time of session php? Nov 01, 2022 am 09:14 AM

The default expiration time of session PHP is 1440 seconds, which is 24 minutes, which means that if the client does not refresh for more than 24 minutes, the current session will expire; if the user closes the browser, the session will end and the Session will no longer exist.

How to solve the problem that the Springboot2 session timeout setting is invalid How to solve the problem that the Springboot2 session timeout setting is invalid May 22, 2023 pm 01:49 PM

Problem: Today, we encountered a setting timeout problem in our project, and changes to SpringBoot2’s application.properties never took effect. Solution: The server.* properties are used to control the embedded container used by SpringBoot. SpringBoot will create an instance of the servlet container using one of the ServletWebServerFactory instances. These classes use server.* properties to configure the controlled servlet container (tomcat, jetty, etc.). When the application is deployed as a war file to a Tomcat instance, the server.* properties do not apply. They do not apply,

See all articles