1
菜鳥級產品 直接安裝就可以了 注意記住mysql的密碼 mysql的 帳號是root
1
上傳**
01
上傳顯示提醒頁面寫入資料庫的**
01
<?php
session_start();include
(
"conn/conn.php"
);?>
02
<?php
03
if
(
$submit
==
"提交"
)
else
else
16
}}}
17
?>
所包含的連線資料庫的配置檔案
1
<?php
2
$id
=mysql_connect(
'localhost'
,
'root'
,
'1'
);
//主機名字
使用者 密碼
3
mysql_select_db(
"db_database12"
,
$id
);
//選擇資料庫
4
mysql_query(
"set
names gb2312");
//設定編碼
5
?>
遍歷然後顯示的**
01
02
<?php
$query
=
"select
* from tb_image2";
03
$result
=mysql_query(
$query
);
04
if
(
$result
==true)}?>
11
AngularJs 上傳檔案到伺服器
define angular angular route angular resource angular animate angular growl angular ngupload controllers index directives index filters index services...
PSFTP上傳檔案到伺服器
一 開啟psftp命令工具 二 可以看到首行提示 use open host.name to connect三 我的伺服器使用者民是xing,伺服器位址是192.168.12.128 我用的本地虛擬機器 open xing 192.168.12.128然後會提示輸入伺服器密碼,輸入即可成功連線伺服器...
angular上傳檔案到伺服器
專案中很多時候都會用到上傳檔案到伺服器,因此在這裡實現一下 1.給按鈕繫結事件 上傳 2.建立基礎成層 定義模組3.建立controller層 3.1建立基礎basecontroller 先空著就行3.2建立控制controller 控制層 controller basecontroller 繼承 ...