eho.st免费空间PHP+MYSQL

2G/5G/PHP/MYSQL/LP/FTP/绑米/无广告/eho.st

FreeWebhosting Features:

* * FREE 2GB Disk Space
* * FREE 5GB Bandwidth
* * FREE Php5 support
* * FREE 10 mySQL DB’s
* * Pre-installed scripts
* * Incredible support
* * Powerful server network (100mbps port speed!)

* * No forced ads
* * Free web statistics (awstats)
* * Full FTP Access
* * Instant activation
* * Domain Name Support
* * yourname.eho.st
* * and so much more…
* server monitor
继续阅读

两组PHP代码的随机图像显示程序

1:PHP随机显示图片

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/*
*   Author:   http://www.yox.net.ru
*/


$url = "./images"; //注意:图片文件夹路径,不可含有'/';
$files = array();
if(false !== ($handle = @opendir($url)))
{
  while($file = readdir($handle))
{
if(($file !== ".")&&($file !== ".."))
{
  if((substr($file,-3) == "gif") || (substr($file,-3) == "jpg") || (substr($file,-3) == "png"))
   $files[count($files)] = $file;
}
}

closedir($handle);
$random = rand(0,(count($files)-1)); //设定随机数的范围;

//根据文件类型,设置输出的文件类型;
if(substr($files[$random],-3) == "gif")
    header("Content-type:image/gif");

elseif(substr($files[$random],-3) == "jpg")
   header("Content-type:image/jpeg");

elseif(substr($files[$random],-3) == "png")
   header("Content-type:image/png");
   readfile("$url/$files[$random]"); //读文件,显示图片;
}else
  echo "<b>图片目录<font color=red>$url</font>不存在!请重新设置!</b>";
?>

2:PHP随机图片
创建名为1到15的gif图片,随机调用显示.(注意,文件名为1.gif到15.gif之间)
可用于论坛头像,嘿嘿…

1
<?readfile(rand(1,15).".gif");?>

收藏自:http://www.yox.net.ru/random_pic_bbs/

几个免费PHP+MySQL空间

9999mb.com
优点:
存储空间:10GB
空间流量:100GB/mo
顶级域名绑定:1个
MySQL数量:5个
数据库用户: 5个
管理: Panel管理,支持Web上传,Phpmyadmin管理数据库。
技术支持:7×24
缺点:
文件类型限制,常见的mp3/rar/zip文件无法上传。文件大小限定在750kb。有广告。
申请地址: www.9999mb.com

speqo.com
配置:
5 GB Disk Space
50 GB Bandwidth
50 MySQL Databases
50 Email Accounts
50 Subdomains
cPanel后台,一个顶级域名和50个2级域名绑定。
最重要的是,几乎没有FTP上传限制,并且不用放任何广告。
探针探出的服务器配置如下:
CPU个数: 4
类型:Dual Core AMD Opteron(tm) Processor 265 缓存:1024 KB
类型:Dual Core AMD Opteron(tm) Processor 265 缓存:1024 KB
类型:Dual Core AMD Opteron(tm) Processor 265 缓存:1024 KB
类型:Dual Core AMD Opteron(tm) Processor 265 缓存:1024 KB
物理内存:共 3964.17 M, 已使用 3674.98 M, 空闲 289.19 M, 使用率 92.7 %
申请地址: www.speqo.com

继续阅读

Mysql+Apche+PHP+Phpmyadmin+Zend安装教程

一、安装Apache_2.0.53

1. 运行apache_2.0.53-win32-x86-no_ssl.msi
(1) Network domain和Server Name:网站的domain name,例www.aaa.com.cn,推荐填localhost,server name也为 localhost,类推。
(2) Administrator’s Email Address:管理者电子邮件。
(3) 选for All Users, on port 80, as a Service。(对本机所有用户有效)
(4) The installation type:选typical。
(5) Where to install:最好选默认安装,以后会省很多麻烦:
c:\Program Files\Apache Group\,然后开始安装。(如果你装了如瑞星等防火墙软件,最好这时待在电脑旁,否则防火墙会弹出是否允许Apache访问网络的选项,不点则自动读秒后默认为阻止,记得点是。)
安装完成,桌面右下角系统栏会出现Apache图标,开启状态应有绿色小箭头)。在浏览器输入http://localhost/http://127.0.0.1/,会出现带Apcache羽毛标志的欢迎信息,说明安装成功。

下面开始进行设置:
进入C:\Program Files\Apache Group\Apache2\conf\目录,用记事本打开httpd.conf文件:(别象我一样被N多设置吓住,如果你想速成,那么带#的句子其实你可以直接跳过不看,直接用记事本搜索相关内容更改。用#标注的都是对该项设置的注释说明文件,要修改的正文通常在注释的下面点,如果你E文凑合或者有合适电子字典,你会发现大部分句子也能读懂,)

继续阅读