質問編集履歴
3
エラーメッセージ・環境を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -378,6 +378,8 @@
|
|
378
378
|
|
379
379
|
</html>
|
380
380
|
|
381
|
+
```
|
382
|
+
|
381
383
|
|
382
384
|
|
383
385
|
### 発生している問題・エラーメッセージ
|
@@ -400,7 +402,7 @@
|
|
400
402
|
|
401
403
|
|
402
404
|
|
403
|
-
|
405
|
+
|
404
406
|
|
405
407
|
### 試したこと
|
406
408
|
|
2
エラーメッセージ・環境を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -342,8 +342,6 @@
|
|
342
342
|
|
343
343
|
<?php else: ?>
|
344
344
|
|
345
|
-
<!--<input type="hidden" name="codeno" value="3130c1s9set">-->
|
346
|
-
|
347
345
|
<input type="submit" class="cartbtn" value="カートに入れる">
|
348
346
|
|
349
347
|
<?php endif;?>
|
@@ -370,8 +368,6 @@
|
|
370
368
|
|
371
369
|
<?php else: ?>
|
372
370
|
|
373
|
-
<!--<input type="hidden" name="codeno" value="3130c1s9set">-->
|
374
|
-
|
375
371
|
<input type="submit" class="cartbtn" value="カートに入れる">
|
376
372
|
|
377
373
|
<?php endif;?>
|
1
エラーメッセージ・環境を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -108,7 +108,7 @@
|
|
108
108
|
|
109
109
|
$sql = "SELECT name,price FROM table where code=?";
|
110
110
|
|
111
|
-
$stmt = $
|
111
|
+
$stmt = $dbh->prepare($sql);
|
112
112
|
|
113
113
|
//条件値をバインド
|
114
114
|
|
@@ -384,6 +384,26 @@
|
|
384
384
|
|
385
385
|
|
386
386
|
|
387
|
+
### 発生している問題・エラーメッセージ
|
388
|
+
|
389
|
+
Fatal error: Uncaught Error: Call to undefined method PDOStatement::bind_param()
|
390
|
+
|
391
|
+
|
392
|
+
|
393
|
+
このエラーが、$stmt->bind_param("s", $product);を指しており、定義されていないメソッドということですが、
|
394
|
+
|
395
|
+
bind_paramは使えないのでしょうか?
|
396
|
+
|
397
|
+
|
398
|
+
|
399
|
+
### 問題発生している環境
|
400
|
+
|
401
|
+
OS:mac
|
402
|
+
|
403
|
+
PHP Version 7.4.2
|
404
|
+
|
405
|
+
|
406
|
+
|
387
407
|
```
|
388
408
|
|
389
409
|
### 試したこと
|