search

win 7下的php 第一天

 

(1)下载安装工具 wampServer

(2)排除obstacle,

先关闭iis
1)关闭iis服务 iisadmin
2)关闭iis下的虚拟主机实例,默认的网站(中间现实一个IIS的大jpg图像,指向iis.net),
win7下 “控制面板” -  “管理工具” “IIS管理器” 删除应用即可。

如果使用端口查看器,会发现,80端口被系统所占用了,尽管进程选项中并没有出现iisadmin这一项,但是它被默认启动了,
被装入了windows的服务项,也就是说,只要你在iis上设置了这个虚拟目录,那么它就会在你登陆windows的时候把它装载进来,并且
占用了你的80端口,
使我的apache用不了(因为占用了80端口)

好了,现在我已经成功的进入了我的wampServer了。
真令人高兴啊。~~

http://localhost

http://localhost/phpmyadmin


创建了一个汽车商店的表单,提交给processorder.php处理,
显示处理的结果。

myphp.php

myphp.php<form action='processorder.php' method="post"><table align="center" border="0"><tr bgcolor="#cccccc"><td>Item</td><td>Quantity</td></tr><tr><td>Tires</td><td><input name='tireqty' type="textbox" size='3' maxlength="3"/></td></tr><tr><td>Oil</td><td><input name='oilqty' type="textbox" size='3' maxlength='3'/></td></tr><tr><td>Spark Plugs</td><td><input name='sparkqty' type="textbox" size='3' maxlength='3'/></td></tr><tr><td>How did you find Bob's?</td><td><select name="find">		<option value="a">I'm a regular customer</option>		<option value="b">TV advertising</option>		<option value="c">Phone directory</option>		<option value="d">Word of mouth</option>	</select></td></tr><tr><td colspan="2" align=center><input type="submit" value="submit Order" /> </td></tr></table></form>


 
processorder.php
 

processorder.php<html><head><title>simplyman's auto parts - order results</title></head><script type="text/css">.blue {color:blue};</script><body><h1 id="Bob-s-auto-parts">Bob's auto parts</h1><h2 id="Order-results">Order results</h2><?php     echo '<p> Order processed at '. date('H:i, js F').'</p>';        //$tireqty;    //$_POST[_'tireqty']    //$HTTP_POST_VARS[ 'tireqty']        $tireqty = $_POST['tireqty'];        $oilqty = $_POST['oilqty'];    $sparkqty = $_POST['sparkqty'];            /* echo '<p>Your order is as follows :</p>'; echo $tireqty. ' tires<br />'; echo $oilqty. ' oils <br />'; echo $sparkqty.' sparks<br />'; */        //echo '$sparkqty sparks ';        /* echo <<<theEnd line 1 line 2 line 3 theEnd */        $totalqty = 0;    $totalqty  =$tireqty +$oilqty +$sparkqty;    if($tireqty <10){        $discount = 0;    }elseif(($tireqty >= 10) && ($tireqty <= 49)){        $discount = 5;    }elseif(($tireqty >= 50 )&&($tireqty <= 99)){        $discount = 10;    }elseif($tireqty >=100){        $discount = 15 ;    }                if($totalqty == 0):        echo '<p style=color:red>';        echo "You didn't order anything on the previous page! <br />";        echo '</p>';        exit;        endif;            /* if($totalqty == 0 ){ echo '<p style=color:red>'; echo "You didn't order anything on the previous page! <br />"; echo '</p>'; exit; } else { if($tireqty > 0 ) echo $tireqty. ' tires<br />'; if($oilqty >0) echo $oilqty. ' bottles of oils <br />'; if($sparkqty > 0) echo $sparkqty.' sparks<br />'; } */        $find=$_POST['find'];    switch($find){      case 'a' :        echo "<p class=blue>Regular customer.</p>";        break;      case 'b':        echo "<p class=blue>Customer referred by TV advert.</p>";        break;      case "c":        echo "<p class=blue>cusomer referred by phone directory</p>";        break;      case "d":        echo "<p class=blue>Customer referred by word of mouth.</p>";        break;      default:        echo "<p class=blue>we do not know how this costmer found us.</p>";        break;    }    echo "Item ordered :".$totalqty."<br />";        $totalamount = (float)$totalqty ;        //$varname ='tireqty';    //$$varname= 5; $tireqty = 5';        define('TIREPRICE',100);    define('OILPRICE',10);    define('SPARKPRICE',4);    //echo TIREPRICE.' tireprice<br />';    $totalamount =0.00 ;        $totalamount = $tireqty * TIREPRICE                 + $oilqty * OILPRICE                 + $sparkqty * SPARKPRICE ;    echo "Subtotal :$" .number_format($totalamount,2)."<br />";        $taxrate = 0.10 ;//local sales tax is 10%    $totalamount = $totalamount * (1 + $taxrate);    echo "Total including tax :".number_format($totalamount,2)."<br />";        $a = 56 ; echo gettype($a).'<br />';    settype($a,'double');    echo gettype($a)."<br />";            echo 'isset($tireqty,$oilqty,$sparkqty):'.isset($tireqty,$oilqty,$sparkqty).'<br />';    echo 'isset($nothere):'.isset($nothere).'<br />';    echo 'empty($tireqty):'.empty($tireqty).'<br />';    echo 'empty($nothere):'.empty($nothere).'<br />';                ?>    <br /><br /><br /><br />    </body></html><?php // here is a comment ?> here is not <?php     echo "<p> Order processed</p>"    ?>            <br />    <?php     echo date('H:i, jS F');            phpinfo();    ?>    



   

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),