質問編集履歴
1
コードの表示を変更しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
test01.php
|
6
5
|
|
6
|
+
|
7
|
-
|
7
|
+
```php
|
8
8
|
|
9
9
|
<?php
|
10
10
|
|
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
url:'testphp.php',
|
46
46
|
|
47
|
-
data: {"test" :"
|
47
|
+
data: {"test" :"candy"},
|
48
48
|
|
49
49
|
success: function(data){
|
50
50
|
|
@@ -70,16 +70,16 @@
|
|
70
70
|
|
71
71
|
</html>
|
72
72
|
|
73
|
+
```
|
73
74
|
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
75
|
+
```php
|
78
|
-
|
79
|
-
----------------------------------------------------------------------------
|
80
76
|
|
81
77
|
<?php
|
82
78
|
|
83
79
|
session_start();
|
84
80
|
|
85
81
|
$_SESSION['test'] = $_POST['test'];
|
82
|
+
|
83
|
+
echo 'testphpからです'.$_SESSION['test'];
|
84
|
+
|
85
|
+
```
|