前提・実現したいこと
PHPでECサイトを作成していて、マイページの作成をしていたのですが、下記のエラーが発生して、原因となっている箇所がわからないです。
()や;を確認しましたが、特に問題はありませんでした。
発生している問題・エラーメッセージ
Parse error: syntax error, unexpected ')', expecting ';' in C:\xampp\htdocs\webkit\myPage.php on line 41
該当のソースコード
php
1<!DOCTYPE html> 2<html> 3<head> 4<meta charset="UTF-8"> 5<title>ログイン</title> 6<link rel="stylesheet" href="css/myPage.css"> 7<meta charset="UTF-8"> 8</head> 9<body> 10<?php 11require_once dirname(__FILE__). "shopcheck.php"; 12 13if (isset($_COOKIE['user'])) { 14 $user = $_COOKIE['user']; 15 $name = file("data/user/{$user}"); 16 $buyHistory = file("data/user/buyHistory/{$user}.history", "r"); 17 $history = file("data/user/history/{$user}.history", "r"); 18 $cart = file("data/user/cart/{$user}.cart", "r"); 19} else { 20 $user = ''; 21 if ($user == '') { 22 ?> 23 <img src="image/thinkingglass.png" alt="考える人"> 24 <h2>おっと!ログインしていませんね</h2> 25 <p>これでは寂しすぎます...</p> 26 <button onclick="location.href='loginAdmin.php'" class="login">今すぐログイン</button> 27 <button onclick="location.href='newUser.php'" class="newUser">新規会員登録して素敵な商品と出会いましょう</button> 28 <?php 29 } else { 30 ?> 31 <h1><?php echo $name[0];?>さんのマイページ</h1> 32 <h2>購入履歴</h2> 33 <?php 34 if ($buyHistory == '') { 35 ?> 36 <h4>まだ何も購入していませんね</h4> 37 <p>素敵な商品を探しに行きましょう!</p> 38 <?php 39 } else { 40 $product = new shopcheker; 41 for ($i = 0, $i < count($buyHistory), $i++) { 42 $product->productCode = $buyHistory[$i]; 43 $product->productReference(); 44 } 45 } 46 } 47 ?> 48 <h2>過去に閲覧した商品</h2> 49 <h4>過去に閲覧した商品が表示されます</h4> 50 <p>過去を振り返ってみましょう。何もありませんね...</p> 51 <h2>登録情報の変更</h2> 52 <h6>ログアウト</h6> 53 <button onclick="location.href='logoutMethod.php'">ログアウト</button> 54<?php 55} 56?> 57</body> 58</html>
試したこと
xamppの再起動、ファイル構成の確認、文法の確認
補足情報(FW/ツールのバージョンなど)
XAMPP Control Panel V3.2.4
Google Chrome
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。