PHP网页设计老外编写的一个maillist源代码
算是1个熟悉的过程,所以c语言的基础有就更好,没有也不怕。源代码 admin.php3<?
INCLUDE("layout.inc.php3");
INCLUDE("config.inc.php3");
INCLUDE("./lang/$language.inc.php3");
print_header("$admin_name");
print_navbar();
$string=implode($argv," ");
$string2=explode("&",$string);
if($string==@#@#)
{
echo"
<p align=center>$program_name Version: $ver<br><br>Administration:</p>
<form method=POST action=\"admin.php3?admin\">
<table border=0 width=50%>
<tr><td>$admin_username:</td><td><input type=text name=adminuser1></td></tr>
<tr><td>$admin_password:</td><td><input type=password name=adminpass1></td></tr>
<tr><td></td><td><input type=submit value=\"$send\"><input type=reset value=$reset></td></tr>
</table>
</form>
";
}
else if($string==@#admin@#)
{
if($adminuser1==$adminuser)
{
if($adminpass1==$adminpass)
{
echo"
<p align=center>$admin_name:</p>
<a href=\"admin.php3?send&$adminuser1&$adminpass1\">$send_mail</a><br><br>
<a href=\"admin.php3?users&$adminuser1&$adminpass1\">$show_users</a><br><br>
<a href=\"admin.php3?delall&$adminuser1&$adminpass1\">$del_table</a><br><br>
<a href=\"tablecreator.php3\">$create_table</a>
";
}
else { echo"$noaccess"; }
}
else { echo"$noaccess"; }
}
else if($string2==@#delall@#)
{
if($string2==$adminuser)
{
if($string2==$adminpass)
{
$query="DROP TABLE $maillist_table";
mysql_db_query($database_name,$query,$conn) or die("$cant_del_table");
echo"$table_deleted";
}
else { echo"$noaccess"; }
}
else { echo"$noaccess"; }
}
else if($string2==@#users@#)
{
if($string2==$adminuser)
{
if($string2==$adminpass)
{
echo"
$headline_users<br><br>
<table border=0 width=100% cellspacing=1><tr bgcolor=\"#000084\"><td width=25%>Name:</td><td width=25%>$prename:</td><td width=25%>E-Mail</td><td width=25%> </td></tr>
";
$query="SELECT * from $maillist_table";
$result=mysql_db_query($database_name,$query,$conn) or die("$database_error");
while($data=mysql_fetch_row($result))
{
echo"<tr bgcolor=\"#0000A0\"><td>$data</td><td>$data</td><td>$data</td><td><a href=\"admin.php3?deluser&$string2&$string2&$data\">$delete</td></tr>";
}
echo"
</table>
";
}
else { echo"$noaccess"; }
}
else { echo"$noaccess"; }
}
else if($string2==@#deluser@#)
{
if($string2==$adminuser)
{
if($string2==$adminpass)
{
$query="DELETE FROM $maillist_table WHERE email=@#$string2@#";
mysql_db_query($database_name,$query,$conn) or die("$string2 $could_not_be_deleted");
echo"$string2 has_been_deleted";
}
else { echo"$noaccess"; }
}
else { echo"$noaccess"; }
}
else if($string2==@#send@#)
{
if($string2==$adminuser)
{
if($string2==$adminpass)
{
echo"
$send_mail:<br><br>
<form method=POST action=admin.php3?sendmail&$string2&$string2>
$topic:<br><input type=text name=subject><br>
$message:<br><textarea rows=20 cols=50 name=text wrap=physical></textarea><br>
<input type=submit value=\"$send\"><input type=reset value=\"$reset\">
";
}
else { echo"$noaccess"; }
}
else { echo"$noaccess"; }
}
else if($string2==@#sendmail@#)
{
if($string2==$adminuser)
{
if($string2==$adminpass)
{
$query="SELECT * FROM $maillist_table";
$result=mysql_db_query($database_name,$query,$conn) or die("$database_error");
while($data=mysql_fetch_row($result))
{
mail("$data","$subject","$text","From: $from\nX-Mailer: $mailer\nReply-To: $reply\n") or die("$send_error");
}
echo"
$xxx_has_been_sent:<br><br>
$topic:<br>
$subject<br>
$message:<br>
$text<br>
";
}
else { echo"$noaccess"; }
}
else { echo"$noaccess"; }
}
print_back();
print_footer();
?>
english.inc.php3
<?
$mailadd_text="If you are in our Newsletter, you get an E-Mail with Informations
about our Homepage every month. Just fill in the following Form.<br>to unsubscribe click";
$remember_pass="Please remember your Password, otherwise, you can@#t delete your mailadress from the list";
$wrong_mail="You@#ve entered a bad E-Mail adress";
$admin_name="Newsletter Administration";
$program_name="Newsletter-Manager";
$admin_username="Admin-Username";
$admin_password="Admin-Password";
$send="submit";
$reset="reset";
$noaccess="access denied";
$send_mail="Send a Mail to the list";
$show_users="Show/delete members";
$del_table="Delete Table $maillist_table";
$create_table="Create Table $maillist_table";
$cant_del_table="Can@#t delete Table $maillist_table";
$table_deleted="Table $maillist_table has been deleted";
$headline_users="Every user on one place:";
$prename="Prename";
$database_error="Error on Database: $database_name";
$delete="delete";
$could_not_be_deleted="could not be deleted";
$has_been_deleted="has been deleted";
$topic="Topic";
$message="Message";
$send_error="send error";
$xxx_has_been_sent="The following has been sent";
$already_there="You are already in the list!!!";
$xxx_has_been_entered="The following has been entered";
$password="Password";
$cant_find_entry="Can@#t find entry!";
$isnt_in_db="$email is not entered in the Database";
$error_del="Error while trying to delete";
$entry_del="Entry has been deleted";
$here="HERE";
$click="";
$all_fields_must_be_edited="ERROR! All Fields have to be filled in completely!";
?>
tablecreator.php3
<?
INCLUDE"layout.inc.php3";
INCLUDE"config.inc.php3";
print_header("Create table $maillist_table");
print_navbar();
$query="CREATE TABLE $maillist_table
(name CHAR (50) not null , vorname CHAR (50) not null ,
email CHAR (255) not null , pass CHAR (10) not null ,
PRIMARY KEY (email), INDEX (email), UNIQUE (email))";
mysql_db_query($database_name,$query,$conn) or die("Could not create table");
echo"Table \"$maillist_table\" has been created";
print_back();
print_footer();
?>
index.php3
<?
/******************************************************************************/
/* */
/* Mailinglisten-Manager */
/* */
/* by: Marcel Beerta */
/* http://www.supertown.de/computer/mazen/ */
/* marcel.beerta@gmx.net */
/* */
/******************************************************************************/
INCLUDE "config.inc.php3";
INCLUDE "./lang/$language.inc.php3";
INCLUDE "layout.inc.php3";
print_header("$program_name");
print_navbar();
$string=implode($argv," ");
if ($string==@#add@#)
{
if($name&&$prename&&$email&&$pw)
{
$query="INSERT INTO $maillist_table(name,vorname,email,pass) VALUES(@#$name@#,@#$vorname@#,@#$email@#,@#$pw@#)";
mysql_db_query($database_name,$query,$conn) or die("$already_there");
echo"
$xxx_has_been_entered<br><br>
Name: $name<br>
$prename: $vorname<br>
E-Mail: $email<br>
$password: $pw<br><br>
$remember_pass<br>
";
}
else
{
echo"$all_fields_must_be_edited";
}
}
else if($string==@#delete@#)
{
echo"
<form method=POST action=\"index.php3?delme\">
<table border=0 align=left cellspacing=0 width=50%>
<tr><td>E-Mail:</td><td><input type=text name=email></td></tr>
<tr><td>$password:</td><td><input type=text name=pw></td></tr>
<tr><td><input type=submit value=\"$send\"></td><td></td></tr>
</table>
</form><br><br><br><br><br><br><br>
";
}
else if($string==@#delme@#)
{
$query1="SELECT * FROM $maillist_table WHERE $maillist_table.email LIKE @#$email@#";
$result=mysql_db_query($database_name,$query1,$conn) or die("$cant_find_entry");
$data=mysql_fetch_row($result) or die("$isnt_in_db<br><br>");
if($data==$pw)
{
$query="DELETE FROM $maillist_table WHERE email=@#$email@#";
mysql_db_query($database_name,$query,$conn) or die("$error_del");
echo"$entry_del";
}
else
{
echo"$noaccess";
}
}
else
{
echo"$mailadd_text
<a href=\"index.php3?delete\">$here</a> $click ...<br><br>
<form method=POST action=index.php3?add>
<table border=0 align=left cellspacing=0 width=50%>
<tr><td>Name:</td><td><input type=text name=name></td></tr>
<tr><td>$prename:</td><td> <input type=text name=vorname></td></tr>
<tr><td>E-Mail:</td><td> <input type=text name=email></td></tr>
<tr><td>$password:</td><td> <input type=text name=pw></td></tr>
<tr><td><input type=submit value=\"$send\"></td></tr>
</table>
</form><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
";
}
print_back();
print_footer();
?>
layout.inc.php3
<?
/******************************************************************************/
/* */
/* Layout Datei ... */
/* */
/* Einfach auf eigene Layout-Wuensche anpassen ... */
/* */
/* by Marcel Beerta */
/* http://www.supertown.de/computer/mazen/ */
/* */
/******************************************************************************/
function print_header ($title)
{
echo"<html><head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">
<meta NAME=\"description\"
content=\"\">
<meta NAME=\"keywords\"
content=\"\">
<meta name=\"distribution\" content=\"global\">
<meta NAME=\"robots\" content=\"index\">
<meta NAME=\"robots\" content=\"follow\">
<meta NAME=\"revisit-after\" CONTENT=\"1 days\">
<meta NAME=\"language\" content=\"\">
<meta NAME=\"author\" content=\"\">
<meta NAME=\"copyright\" content=\"\">
<meta name=\"programmer\" content=\"Marcel Beerta (www.game-center.de)\">
<title>$title</title>
</head>
<body topmargin=\"0\" leftmargin=\"0\" bgColor=#040732 link=#ffc600 text=#ffffff vLink=#ffc600 style=\"font-family: Verdana; color: #FFFFFF\">";
}
function print_navbar ( )
{
echo"
<br>
";
}
function print_footer ( )
{
echo"
<p align=center>
</p>
</body></html>
";
}
function print_back ( )
{
echo"<br><br><a href=\"javascript:history.go(-1)\"><strong><< back </strong></a><br><br>";
}
?>
config.inc.php3
/*****************************************************************************/
/* */
/* Datenbank-Connector */
/* Marcel Beerta */
/* http://www.supertown.de/mazen/maillist */
/*****************************************************************************/
/**************************************/
/* Just edit the following few lines: */
/**************************************/
//Admin-username:
$adminuser=@#szw@#;
//Admin-password:
$adminpass=@#szw@#;
//language
$language=@#english@#; //other Languages: @#german@#,@#english@#
//The Hostname of the MySQL-Server
$hostname = @#localhost@#;
//MySQL-Server username
$user = @#root@#;
//MySQL-Server password
$pass = @#@#;
//Database-Name
$database_name = @#maillist@#;
//Maillinglist-Table
$maillist_table=@#marcel_maillist@#;
//From-E-Mail
$from=@#sszw@163.net@#;
//Reply-To-E-Mail
$reply=@#sszw@163.net@#;
//X-Mailer
$mailer=@#PHP-Maillist by Mazen@#;
/************************************************/
/* Don@#t edit this, if you don@#t know, what you */
/* do... */
/************************************************/
$conn=mysql_pconnect ($hostname,$user,$pass);
$ver="1.0.0";
我的文章不会对您的学习起到实质性的作用,您能否成功,还得靠自己的,坚持,坚持,再坚持,就是步入成功的不二法门。 如果你已经到这种程度了,那么你已经可以做我的老师了。其实php也分很多的区域, 本人接触php时间不长,算是phper中的小菜鸟一只吧。由于刚开始学的时候没有名师指,碰过不少疙瘩,呗很多小问题卡过很久,白白浪费不少宝贵的时间,在次分享一些子的学习的心得。 ,熟悉html,能用div+css,还有javascript,优先考虑linux。我在开始学习的时候,就想把这些知识一起学习,我天真的认为同时学习能够互相呼应,因为知识是相通的。 环境搭建好,当你看见你的浏览器输出“it works\\\\\\\"时你一定是喜悦的。在你解决问题的时候,我强烈建议多读php手册。 说php的话,首先得提一下数组,开始的时候我是最烦数组的,总是被弄的晕头转向,不过后来呢,我觉得数组里php里最强大的存储方法,所以建议新手们要学好数组。 学好程序语言,多些才是王道,写两个小时代码的作用绝对超过看一天书,这个我是深有体会(顺便还能练打字速度)。 作为一个合格的coder 编码的规范是必须,命名方面我推崇“驼峰法”,另外就是自己写的代码最好要带注释,不然时间长了,就算是自己的代码估计看起来都费事,更不用说别人拉。 写的比较杂,因为我也是个新手,不当至于大家多多指正。 没接触过框架的人,也不用害怕,其实框架就是一种命名规范及插件,学会一个框架其余的框架都很好上手的。 学好程序语言,多些才是王道,写两个小时代码的作用绝对超过看一天书,这个我是深有体会(顺便还能练打字速度)。 首先声明:我是一个菜鸟,是一个初学者。学习了一段php后总是感觉自己没有提高,无奈。经过反思我认为我学习过程中存在很多问题,我改变了学习方法后自我感觉有了明显的进步。 最后介绍一个代码出错,但是老找不到错误方法,就是 go to wc (囧),出去换换气没准回来就找到错误啦。 其实也不算什么什么心得,在各位大侠算是小巫见大巫了吧,望大家不要见笑,若其中有错误的地方请各位大虾斧正。 遇到出错的时候,我经常把错误信息直接复制到 google的搜索栏,一般情况都是能搜到结果的,不过有时候会搜出来一大片英文的出来,这时候就得过滤一下,吧中文的弄出来,挨着式方法。 找到的的资料很多都是在论坛里的,需要注册,所以我一般没到一个论坛都注册一个id,所有的id都注册成一样的,这样下次再进来的时候就不用重复注册啦。当然有些论坛的某些资料是需要的付费的。 小鸟是第一次发帖(我习惯潜水的(*^__^*) 嘻嘻……),有错误之处还请大家批评指正,另外,前些日子听人说有高手能用php写驱动程序,真是学无止境,人外有人,天外有天。 对于懒惰的朋友,我推荐php的集成环境xampp或者是wamp。这两个软件安装方便,使用简单。但是我还是强烈建议自己动手搭建开发环境。 学习php的目的往往是为了开发动态网站,phper就业的要求也涵盖了很多。我大致总结为:精通php和mysql
页:
[1]