摘要:
阅读全文
摘要:
<?php if ($data['status']==1){ ?> <input type="radio" name="status" value="1" checked>正常 <input type="radio" name="status" value="2">异常 <?php }else{ ? 阅读全文
摘要:
insert into test2(name,gender,age) select name,gender,age from test2; 蠕虫程序复制 (1) 要有初始值 (2) Insert into 表名 (字段1,字段2…) select 字段1,字段2… from 表名 (3) 成2^n复 阅读全文
摘要:
<?php$link=new PDO('mysql:host=127.0.0.1;charset=utf8;dbname=day4','root','root');$sql="select * from user_name";$PDOStatement=$link->query($sql);$dat 阅读全文
摘要:
if ($result){ echo '添加成功';// header('refresh:3,url=user_nameList.php'); echo "<script> alert('添加成功');location.href='user_nameList.php'</script>";}else 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <link rel="stylesheet" type="text/css" href="css/Bootstrap4.css" /> </head> <bod 阅读全文
摘要:
1.1关于数组操作的函数 1.1.1range(start,end) 创建一个数组,值从start开始,一直到end结束 如果range里面的参数是数字,那么他直接按照数字大小的顺序排序,如果里面的参数是一个字符,那么他将按照ascii编码的顺序排序。 1.1.2array_rand() 随机取出一 阅读全文
摘要:
///////////////////////////////////////////////////路由 //展示表单页面Route::get('/movies/add','moviesController@add');//表单提交页面Route::post('/movies/insert','m 阅读全文