`
文章列表
index.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text ...

第02章 基础核心

index.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/ ...

第01章 jQuery入门

index.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text ...

PSC4 序列号

序列号如下:1330-1930-8509-4994-7790-83791330-1523-8961-3341-6172-6670但是你安装完成以后还要破解,如果不破解,序列号用一次就无效了,安装完成打开C:\windows\system32\drivers\etc\"找到 hosts 文件, 右键点击--打开方式---记事本,然后在末尾加上: 127.0.0.1 activate.adobe.com 127.0.0.1 practivate.adobe.com 127.0.0.1 ereg.adobe.com 127.0.0.1 activate.wip3.adobe ...
下载版本mysql-5.5.19-win32.msiphpMyAdmin-4.1.4-all-languages.3715384168.zip   点击开始安装 mysql-5.5.19-win32.msi,点击下一步   点击下一步  选择安装类型,有“Typical(默认)”、“Complete(完全)”、“Custom(用户自定义)”三个选项,我们选择“Custom”,有更多的选项,也方便熟悉安装过程   在“Developer Components(开发者部分)”上左键单击,选择“This feature, and all subfeatures, will be ins ...

安装 apache+php

 
下载版本httpd-2.2.25-win32-x86-no_ssl.msiphp-5.3.5-Win32-VC6-x86.zip   安装 1 apache 比较简单,一路next完成.   浏览器验证,出现一下页面,成功  2 php安装下载zip包,直接解压到一个目录,目录重命名为php  php配置 php.ini-development 文件重命名为 php.ini 指定PHP扩展包的具体目录,以便调用相应的DLL文件 ; Directory in which the loadable extensions (modules) reside. ; http://php ...
javascript:return confirm('您确定要删除吗?') onclick="javascript:return confirm('您确定要删除吗?')"   用在<a>和<input>标签里都可以   例如: <a href="?id=XXX" onclick="javascript:return confirm('您确定要删除该条数据吗?')" title="删除该条数据">删除    
<?php function regular_domain($domain) { if (substr ( $domain, 0, 7 ) == 'http://') { $domain = substr ( $domain, 7 ); } if (strpos ( $domain, '/' ) !== false) { $domain = substr ( $domain, 0, strpos ( $domain, '/' ) ); } return strtolower ( $domain ); } function top_domain ...
-- -- 表的结构 `o_data` -- CREATE TABLE `o_data` ( `o_id` int(10) unsigned NOT NULL auto_increment COMMENT '//用户id', `o_name` varchar(40) NOT NULL COMMENT '//姓名', `o_tel` varchar(20) default NULL COMMENT '//手机号', `o_qq` varchar(20) default NULL COMMENT '//qq号', `o_site` varchar(250 ...

JS HTML经典框架

switch.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="tex ...

JS 随机图片效果

<html> <head> <title>JS 随机图片效果</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <style type="text/css"> <!-- img { border: #999999; border-style: dotted; border-top-width: 1px; border-right-width: ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; chars ...

PHP 数字分页

<?php header ( 'Content-Type: text/html; charset=utf-8' ); //分页 $page=$_GET['page']; $allcount= 100; $page_size =10; $page_show =5; $page_count = ceil($allcount/$page_size); if($page <= 1 || $page == '') $page = 1; if($page >= $page_count) $page = $page_count; $pre_page = ($page ...

PHP 创建压缩图

<?php //创建压缩图 function _create_thumbnail($srcFile, $toW, $toH, $toFile="") { if ($toFile == "") { $toFile = $srcFile; } $info = ""; $data = getimagesize($srcFile, $info); if (!$data) return false; //将文件载入到资源变量im中 switch ($data[2]) { c ...
.在弹出的窗口中找到General--Workspace,在右侧窗口中下方位置找到Text file encoding,点击other按钮,选择和你的项目字符相同的字符编码,然后点击右下角的Apply--OK;  新建项目,查看更改的编码是不是自己设置的         
Global site tag (gtag.js) - Google Analytics