php
前端酱紫
这个作者很懒,什么都没留下…
展开
-
php 怎么设置cookie
01.php <?php // 向客户端输出cookie // cookie 输出到客户端,也是以键值对的方式输出客户端的。 setcookie( 'username', 'panjinlian' ); ?> 02.php <?php echo $_COOKIE['username']; ?> <script> // 输出cookie console.log( document.cookie ); </script> 03.php <?php ec原创 2020-07-18 16:24:26 · 552 阅读 · 0 评论 -
php 案例登录/注册
注册 page/register注册.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <原创 2020-07-18 16:13:19 · 209 阅读 · 0 评论