php-文件上传

表单上传文件index.php <!doctype html> <html lang="en"> <head> <meta charset…

php-邮件发送

一、使用PHP内置的mail()函数 <?php $to = "test@163.com"; //收件人 $subject = "Test"; //主题 $message =…

php – 验证用户名, E-mail, 和 网址

//了解下正则表达式 <?php header("content-type:text/html;charset=utf-8"); $nameerr=$emailerr=$ur…

php-验证表单数据

<?php // 定义变量并默认设置为空值 $name = $email = $gender = $comment = $website = ""; if ($_SERVER…

C-统计输入字符中的字母,数字,空格

getchar有一个int型的返回值.当程序调用getchar时.程序就等着用户按键.用户输入的字符被存放在键盘缓冲区中.直到用户按回车为止(回车字符也放在缓冲区中).当用户键入回…

C-辗转相除法求最大公约数

#include<stdio.h> int main(){ //a,b为两数,t为临时存放数据,r为余数 int a,b,t,r; printf("请输入两个数:\n"…

c-输出特殊图案

字符共有256个,不同字符,图形不一样。VC6.0下出现中文乱码(原因+解决方法):176的16进制是B0,219的16进制是DB,0xB0DB是"佰"字的内码,所以输出的就是"佰…

php-实现微信回复天气情况

1.调用天气api接口可以在百度apistore找到免费的api接口 //天气api public function getWeather($city){ $ch = curl_i…

linux-安装apache

1.下载apache wget http://www.xxx.com/httpd.tar.gz 2.编译前解决依赖关系 sudo apt-get update sudo apt-g…

C-socket编程,实现客户端与服务端通信(客户端)

#include <cstdio> #include <Winsock2.h> #pragma comment(lib,"ws2_32.lib") int …

加载更多