摘要: var arr = new Array();arr[0] = "aaa";arr[1] = "bbb";arr[2] = "ccc";//alert(arr.length);//3arr.pop();//alert(arr.length);//2//alert(arr[arr.length-1]); 阅读全文
posted @ 2016-12-21 13:26 梦忘川 阅读(2234) 评论(0) 推荐(0) 编辑
摘要: php中必须放在echo后的双引号内,引号结束要有分号 select * from tablename order by id desc order by 是排序的命令 order by id就是将查询结果根据id的内容升序排列 order by id desc就是将查询结果根据id的内容降序排列 ... 阅读全文
posted @ 2014-11-05 10:56 梦忘川 阅读(100) 评论(0) 推荐(0) 编辑