discuz1.5 安装小记

 
1。 Discuz! X1.5 正式版最新下载(20101125)
 
2。需要在godaddy hosting server to build a mysql database.
 
 
 
发表在 discuz | 留下评论

asp—pes

需要将网站所在的目录夹共享。
 
 
localhost/pes/admin_login.asp
发表在 asp | 留下评论

2010 年底免费培训

 
由于生活忙碌,场地限制, 2010年底免费培训取消,hotmail 和gmail 的账户申请可以从我的个人主页直接下载 www,sgcomputer.info
 
 
 
发表在 未分类 | 留下评论

Hello world!

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

发表在 未分类 | 一条评论

godaddy-To Specify the Email Address for the Form-Mailer

 

 

Specifying an Email Address for the PHP Form-Mailer

 

In order to use our PHP form-mailer, you must specify an email address where you want the contents of your form sent to.

To Specify the Email Address for the Form-Mailer

  1. Log in to your Account Manager.
  2. From the Products section, click Web Hosting.
  3. Next to the hosting account you want to use, click Launch.
  4. In the Content section of the Hosting Control Center, click the Form Mail icon.
  5. Under the Forms Email Address section, type the email address you want to use with your form-mailer.
  6. Click Continue.
  7. Verify that this is the address you want to use with your form-mailer, and click Update.

 

Thank you for contacting Online Support.  Your current account does not support PHP.  You will need to enable IIS7 if you wish to use PHP.  You can upgrade to IIS 7 from IIS Management in the Hosting Control Center.

Existing Windows Shared Hosting accounts running IIS 6 can upgrade to IIS 7. For information on IIS 7, see What is IIS 7?

NOTE: IIS 7 is not compatible with FrontPage Extensions or MS SQL 4.0 databses.

To Upgrade Your Windows Shared Hosting Account to IIS 7

gdform.php

To Use gdform.php

WARNING: The gdform.php file cannot be recovered if it’s deleted.

  1. Create your Web form as normal and assign unique names to your form items.
  2. NOTE: Keep in mind that our form-mailer script will sort the names of your form items alphabetically when it composes the email message. This is the order of precedence: uppercase letters, lowercase letters, numbers.

  3. For the form action line, enter /gdform.php. For example:
    <form action="/gdform.php" method="post">
  4. Set the form method to "post."
  5. In addition to the fields you create in your form, there are three special fields that you can use: subject, redirect, and email.

    Subject. Controls the subject line in the form email.

    Redirect. Controls the page that your visitors will see after they submit the form.

    Email. Controls the return address for the form email.

    For example:

    <form action="/gdform.php" method="post">
    <input type="hidden" name="subject" value="Form Submission" />
    <input type="hidden" name="redirect" value="thankyou.html" />
    <p>First Name:<input type="text" name="FirstName" /></p>
    <p>Last Name:<input type="text" name="LastName" /></p>
    <p>E-Mail:<input type="text" name="email" /></p>
    <p>Comments:<textarea name="comments" cols="40" rows="10">
    Type comments here.</textarea></p>
    <input type="submit" name="submit" value="submit"/>
    </form>
  6. Save and upload your file to your hosting account.

For information on reinstalling your default scripts, see How Do I Reinstall the Default Scripts Directory?

 

 

发表在 PHP | 留下评论

joomla 解决向下兼容问题

解决向下兼容问题
 
 
插件管理–启用Legacy
 
插件管理,里面有一个Syetem-Legacy.选择发布即可
发表在 CMS-JOOMLA | 留下评论

foreach 循环语句

 
 
foreach($array as $value)
只能用于循环遍历数组,每进行一次循环,当前数组元素就会赋值给$value
 
foreach($array as $key=>$value) 
 
能用于循环遍历数组,每进行一次循环,当前数组元素就会赋值给$value  当前每个单元的健名也给$key
发表在 PHP | 留下评论

关联数组

有三种数组类型:

数值数组
带有数字 ID 键的数组

例子 1

在这个例子中,会自动分配 ID 键:

$names = array("Peter","Quagmire","Joe");

例子 2

在这个例子中,我们人工分配的 ID 键:

$names[0] = "Peter";
$names[1] = "Quagmire";
$names[2] = "Joe";

 

关联数组
数组中的每个 ID 键关联一个值
<?php

$ages['Peter'] = "32";
$ages['Quagmire'] = "30";
$ages['Joe'] = "34";

echo "Peter is " . $ages['Peter'] . " years old.";
?>

以上脚本的输出:

Peter is 32 years old.
多维数组
包含一个或多个数组的数组
发表在 PHP | 留下评论

godaddy email sent problem

一   must be  UPDATE TO IIS7.0
 
二 

 Specify the Email Address for the Form-Mailer

  1. Log in to your Account Manager.
  2. From the Products section, click Web Hosting.
  3. Next to the hosting account you want to use, click Launch.
  4. In the Content section of the Hosting Control Center, click the Form Mail icon.
  5. Under the Forms Email Address section, type the email address you want to use with your form-mailer.
  6. Click Continue.
  7. Reinstall default scripts directory   —must do
  8. Verify that this is the address you want to use with your form-mailer, and click Update.

三 


Our support staff has responded to your request, details of which are described below:

Discussion Notes
Support Staff Response
Dear ping ping,

Thank you for your reply.

Two form mailers are included with new Windows shared hosting accounts: webformmailer.asp and gdform.php. To use a form mailer, create a Web form in HTML that links to one of our scripts and upload it to your hosting account.

NOTE: Do not use test@test.com to test your form mailer.

WARNING: The gdform.asp and gdform.php files cannot be recovered if they are deleted.

The form mailers are not installed until you specify the email address you want to use with the form mailer in your account manager. For more information, see Specifying an Email Address for the ASP Form-Mailer.

webformmailer.asp

To Use webformmailer.asp

  1. Create a Web form, assigning unique names to your form fields.
  2. In the form tag, assign _gdForm/webformmailer.asp to the action attribute and set the form method to post:
    <form action="_gdForm/webformmailer.asp" method="post">

  3. gdform.php
    Only Windows accounts running IIS7 can use gdform.php.

To Use gdform.php

  1. Create your Web form as normal and assign unique names to your form items.

    NOTE: Keep in mind that our form-mailer script will sort the names of your form items alphabetically when it composes the email message. This is the order of precedence: uppercase letters, lowercase letters, numbers.

    For the form action line, enter /gdform.php. For example:

  2. <form action="/gdform.php" method="post">

    Set the form method to "post."

  3. In addition to the fields you create in your form, there are three special fields that you can use: subject, redirect, and email.

    Subject. Controls the subject line in the form email.

    Redirect. Controls the page that your visitors will see after they submit the form.

    Email. Controls the return address for the form email.

    For example:

    <form action="/gdform.php" method="post">
    <input type="hidden" name="subject" value="Form Submission" />
    <input type="hidden" name="redirect" value="thankyou.html" />
    <p>First Name:<input type="text" name="FirstName" /></p>
    <p>Last Name:<input type="text" name="LastName" /></p>
    <p>E-Mail:<input type="text" name="email" /></p>
    <p>Comments:<textarea name="comments" cols="40" rows="10">
    Type comments here.</textarea></p>
    <input type="submit" name="submit" value="submit"/>
    </form>
  4. Save and upload your file to your hosting account.

发表在 PHP | 留下评论

JQUERY FIRST PROJECT

发表在 JQUERY | 留下评论