당신은 웹 서버가없는 경우, 당신은 WebMatrix를 사용하여 만들 수 있습니다.
WebMatrix
WebMatrix 웹 사이트를 구축 할 수있는 쉬운 방법을 제공하는 무료 웹 개발 도구입니다.
WebMatrix는 포함
- 웹 예제 및 템플릿
- 다른 웹 언어 지원 (PHP, ASP.NET, Node.js)
- 웹 서버
- 데이터베이스 서버 (mySQL and SQL Server Compact)
당신이 빈 웹 사이트로 시작하거나, PHP, ASP, Umbraco, DotNetNuke의, 드루팔, 줌라, 워드 프레스 등을 사용하여 기존의 템플릿에 구축 할 수 있습니다 WebMatrix로.
WebMatrix는 또한 데이터베이스, 보안, 검색 엔진 최적화, 웹 게시에 대한 기본 제공 도구가 있습니다.
: WebMatrix를 설치하려면이 링크를 따라 http://www.microsoft.com/web/webmatrix를
빈 PHP 사이트 만들기
WebMatrix에서 템플릿 갤러리를 선택합니다. PHP를 선택합니다. 빈 사이트를 선택합니다.
DemoAppml 사이트의 이름을 변경 (or anything you like) 하고 다음을 클릭합니다.
당신이 그림에서 볼 수 있듯이, WebMatrix는 웹 사이트의 다양한 종류를 만들 수 있습니다.
의 HTML 테스트 페이지 만들기
WebMatrix 창에서 새로 만들기를 선택합니다. 새 파일을 선택합니다. 파일 형식 선택의 HTML.
를 Customers.htm에 파일 이름 변경 (or anything you like) . 확인을 클릭합니다.
이와 새 파일에서 HTML을 대체 :
를 Customers.htm
<!DOCTYPE html>
<html lang="en">
<title>Customers</title>
<link rel="stylesheet" href=
"http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="http://www.w3ii.com/appml/2.0.3/appml.js"></script>
<body>
<div class="container" appml-data="customers">
<h1>Customers</h1>
<table class="table table-striped table-bordered">
<tr>
<th>Customer</th>
<th>City</th>
<th>Country</th>
</tr>
<tr appml-repeat="records">
<td>{{CustomerName}}</td>
<td>{{City}} </td>
<td>{{Country}} </td>
</tr>
</table>
</div>
<script>
var customers = {
"records":[
{"CustomerName":"Alfreds Futterkiste","City":"Berlin","Country":"Germany"},
{"CustomerName":"Ana Trujillo Emparedados y helados","City":"Mexico D.F.","Country":"Mexico"},
{"CustomerName":"Antonio Moreno Taqueria","City":"Mexico D.F.","Country":"Mexico"},
{"CustomerName":"Around the Horn","City":"London","Country":"UK"},
{"CustomerName":"B's
Beverages","City":"London","Country":"UK"},
{"CustomerName":"Berglunds
snabbkop","City":"Lulea","Country":"Sweden"},
{"CustomerName":"Blauer See
Delikatessen","City":"Mannheim","Country":"Germany"},
{"CustomerName":"Blondel
pere et fils","City":"Strasbourg","Country":"France"},
{"CustomerName":"Bolido
Comidas preparadas","City":"Madrid","Country":"Spain"},
{"CustomerName":"Bon
app'","City":"Marseille","Country":"France"},
{"CustomerName":"Bottom-Dollar
Marketse","City":"Tsawassen","Country":"Canada"},
{"CustomerName":"Cactus
Comidas para llevar","City":"Buenos Aires","Country":"Argentina"},
{"CustomerName":"Centro
comercial Moctezuma","City":"Mexico D.F.","Country":"Mexico"},
{"CustomerName":"Chop-suey Chinese","City":"Bern","Country":"Switzerland"},
{"CustomerName":"Comercio Mineiro","City":"Sao Paulo","Country":"Brazil"}
]};
</script>
</body>
</html>
»스스로를보십시오 테스트 페이지를 실행하려면 다음 WebMatrix에서 페이지를 마우스 오른쪽 단추로 클릭하고 브라우저에서 실행을 선택합니다.
데이터베이스 만들기
WebMatrix 창에서 데이터베이스를 선택합니다. 새 데이터베이스를 선택합니다. MySQL 데이터베이스를 선택합니다.
demodb를에 데이터베이스 이름을 변경 (or anything you like) 하고 확인을 클릭합니다.
WebMatrix에서 파일을 선택하고 web.config 파일을 엽니 다.
(당신이 web.config 파일을 볼 수없는 경우, WebMatrix를 새로 고침)
구성 AppML
AppML의 구성 파일을 만들려면의 Web.config에 연결 문자열에서 정보를 사용하십시오.
파일 appml_config.php 이름 :
appml_config.php
<?php echo("Access Forbidden");exit();?>
{
"dateformat" : "yyyy-mm-dd",
"databases" : [{
"connection" : "mydatabase",
"host" : "localhost",
"dbname" : "DemoDB",
"username" : "DemoDBUkbn5",
"password" : "l6|U6=V(*T+P"
}]
}
구성 파일 설명 :
재산 | 기술 |
---|---|
dateformat | 당신이 당신의 모델에서 사용할 날짜 형식 |
connection | 연결 이름은 당신은 당신의 모델에 사용 |
host | 서버에서 발견 된 IP 또는 호스트 이름 = |
dbname | 데이터베이스에있는 데이터베이스 이름 = |
username | UID =에있는 사용자 이름 |
password | PWD =에서 발견 된 암호 |
복사 AppML
: 파일 다운로드 http://www.w3ii.com/appml/2.0.3/appml.php.txt을 .
당신의 웹 사이트에 파일을 복사합니다. appml.php로 이름을 바꿉니다 :
데이터베이스 테이블 만들기
데이터베이스에서 고객 테이블을 생성하기위한 모델을 만듭니다.
Create_Customers.js
{
"database" : {
"connection" : "mydatabase",
"execute" : [
"DROP
TABLE IF EXISTS Customers",
"CREATE TABLE IF NOT EXISTS Customers (CustomerID
INT NOT NULL AUTO_INCREMENT,PRIMARY KEY (CustomerID),CustomerName NVARCHAR(255),ContactName
NVARCHAR(255),Address NVARCHAR(255),City NVARCHAR(255),PostalCode NVARCHAR(255),Country
NVARCHAR(255))",
"INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country)VALUES (\"Alfreds Futterkiste\",\"Maria Anders\",\"Obere Str.
57\",\"Berlin\",\"12209\",\"Germany\")",
"INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country)VALUES (\"Around the Horn\",\"Thomas Hardy\",\"120 Hanover
Sq.\",\"London\",\"WA1 1DP\",\"UK\")",
"INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country)VALUES (\"Blauer See Delikatessen\",\"Hanna Moos\",\"Forsterstr.
57\",\"Mannheim\",\"68306\",\"Germany\")"
]
}}
Create_Customers 모델을 실행하기위한 HTML 페이지를 생성합니다 :
Create_Customers.htm
<!DOCTYPE html>
<html lang="en-US">
<script src="http://www.w3ii.com/appml/2.0.3/appml.js"></script>
<body>
<div appml-data="appml.php?model=Create_Customers"></div>
</body>
</html>
HTML 페이지를 실행하려면 : WebMatrix에서 페이지를 마우스 오른쪽 단추로 클릭하고 브라우저에서 실행을 선택합니다.
응용 프로그램 만들기
고객의 응용 프로그램에 대한 모델을 만듭니다. 그것을 customers.js로 저장 :
Customers.js
{
"rowsperpage" : 10,
"database" : {
"connection" : "mydatabase",
"sql" : "SELECT * FROM Customers",
"orderby" : "CustomerName"
}
}
고객의 응용 프로그램을 실행하기위한 HTML 페이지를 생성합니다 :
를 Customers.htm
<!DOCTYPE html>
<html lang="en">
<title>Customers</title>
<link rel="stylesheet" href=
"http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="http://www.w3ii.com/appml/2.0.3/appml.js"></script>
<body>
<div class="container" appml-data="appml.php?model=customers">
<h1>Customers</h1>
<table class="table table-striped table-bordered">
<tr>
<th>Customer</th>
<th>City</th>
<th>Country</th>
</tr>
<tr appml-repeat="records">
<td>{{CustomerName}}</td>
<td>{{City}}</td>
<td>{{Country}}</td>
</tr>
</table>
</div>
</body>
</html>
»스스로를보십시오 HTML 페이지를 실행하려면 : WebMatrix에서 페이지를 마우스 오른쪽 단추로 클릭하고 브라우저에서 실행을 선택합니다.