質問編集履歴

3

タイトルをより具体的な内容に変更しました。

2021/05/31 11:26

投稿

takasports
takasports

スコア5

test CHANGED
@@ -1 +1 @@
1
- PHP ォー完成したい
1
+ PHP ォーニング(警告)解消したい
test CHANGED
File without changes

2

ファイルの構成、関わる全てのファイルのプログラムを追記しました。よろしくお願いします。

2021/05/31 11:25

投稿

takasports
takasports

スコア5

test CHANGED
File without changes
test CHANGED
@@ -488,7 +488,7 @@
488
488
 
489
489
 
490
490
 
491
- tmpl/comf.tmpl
491
+ tmpl/conf.tmpl
492
492
 
493
493
 
494
494
 

1

ファイルの構成、関わる全てのファイルのプログラムを追記しました。よろしくお願いします。

2021/05/31 11:12

投稿

takasports
takasports

スコア5

test CHANGED
File without changes
test CHANGED
@@ -2,10 +2,6 @@
2
2
 
3
3
 
4
4
 
5
-
6
-
7
-
8
-
9
5
  PHPで、お問合せフォームを作っています。
10
6
 
11
7
  ごくシンプルなものですが、ラジオボタンがあります。
@@ -14,6 +10,22 @@
14
10
 
15
11
 
16
12
 
13
+ ファイル構成は、index.html,sample.php,user.csvと
14
+
15
+ tmplのフォルダ。その中に、comf.tmpl,error.tmpl,send.tmpl
16
+
17
+ があります。
18
+
19
+
20
+
21
+ csvファイルに顧客データを記録するためのシステム構築を考えております。
22
+
23
+
24
+
25
+
26
+
27
+
28
+
17
29
 
18
30
 
19
31
  ### 発生している問題・エラーメッセージ
@@ -36,6 +48,12 @@
36
48
 
37
49
  ```ここに言語名を入力
38
50
 
51
+
52
+
53
+ sample.php
54
+
55
+
56
+
39
57
  <?php
40
58
 
41
59
 
@@ -296,7 +314,85 @@
296
314
 
297
315
 
298
316
 
317
+ index.html
318
+
319
+
320
+
321
+ <!DOCTYPE html>
322
+
323
+ <html>
324
+
325
+ <head>
326
+
327
+
328
+
329
+ <meta charset="utf-8">
330
+
331
+ <title> </title>
332
+
333
+
334
+
335
+ </head>
336
+
337
+
338
+
339
+ <body>
340
+
341
+
342
+
343
+ <div id="headerLogo">
344
+
345
+
346
+
347
+ <a href="../index.html"><div id="kjsLogo"><img src="../images/kjslogo.png" alt="カトウジュニアスポーツロゴ" width="80px" /></div></a>
348
+
349
+ <div id="kjsNameLogo">
350
+
351
+ <a href="../index.html"><p><img src="../images/kjs-name-eigo.png" width="300px" /></p>
352
+
353
+ <p><img src="../images/kjs-name-katakana.png" width="300px" height="22px" /></div></a>
354
+
355
+ </p>
356
+
357
+ </div>
358
+
359
+
360
+
361
+ <div>
362
+
363
+
364
+
365
+ <nav id="annai-left">
366
+
367
+ <h1>お問い合わせ</h1>
368
+
369
+ <p> のホームページにアクセスありがとうございます。<br>お問い合わせいただきました件につきましては、原則メールにて回答申し上げます。<br>尚、お電話での回答をご希望の方は、電話番号のご入力をお願いいたします。</p>
370
+
371
+ <p>よろしくお願いいたします。</p>
372
+
373
+ </nav>
374
+
375
+
376
+
377
+ <nav id="annai-right">
378
+
379
+ <p>電話でのお問い合わせ</p>
380
+
381
+ <p id="phone">8</p>
382
+
383
+ <p>FAXでのお問い合わせ</p>
384
+
385
+ <p id="fax">3</p>
386
+
387
+ <p>受付時間 平日9時~17時30分</p>
388
+
389
+ </nav>
390
+
391
+ </div>
392
+
393
+
394
+
299
- <form action="sample.php" method="post">
395
+ <form action="sample.php" method="post">
300
396
 
301
397
  <table id="otoiawaseform" cellspacing="0" cellpadding="20" >
302
398
 
@@ -390,6 +486,196 @@
390
486
 
391
487
  </html>
392
488
 
489
+
490
+
491
+ tmpl/comf.tmpl
492
+
493
+
494
+
495
+ <!doctypr html>
496
+
497
+ <html>
498
+
499
+ <head>
500
+
501
+ <meta charset="utf-8">
502
+
503
+ <style type="text/css">
504
+
505
+ <!--
506
+
507
+ span { color:green; }
508
+
509
+ -->
510
+
511
+ </style>
512
+
513
+ <title>確認フォーム</title>
514
+
515
+ </head>
516
+
517
+ <body>
518
+
519
+ <p>次の内容でよろしければ、送信ボタンを押してください。</p>
520
+
521
+ <p>
522
+
523
+ ■お名前 : <span>!name!</span>
524
+
525
+ </p>
526
+
527
+ <p>
528
+
529
+ ■メールアドレス : <span>!email!</span>
530
+
531
+ </p>
532
+
533
+ <p>
534
+
535
+ ■電話番号 : <span>!tel!</span>
536
+
537
+ </p>
538
+
539
+ <p>
540
+
541
+ ■郵便番号 : <span>!zipcode!</span>
542
+
543
+ </p>
544
+
545
+ <p>
546
+
547
+ ■住所: <span>!address!</span>
548
+
549
+ </p>
550
+
551
+ <p>
552
+
553
+ ■お客様の属性 : <span>!attribute!</span>
554
+
555
+ </p>
556
+
557
+ <p>
558
+
559
+ ■コメント : <span>!comment!</span>
560
+
561
+ </p>
562
+
563
+ <form action="form.php" method="post">
564
+
565
+ <input type="hidden" name="mode" value="send">
566
+
567
+ <input type="hidden" name="name" value="!name!">
568
+
569
+ <input type="hidden" name="email" value="!email!">
570
+
571
+ <input type="hidden" name="tel" value="!tel!">
572
+
573
+ <input type="hidden" name="zipcode" value="!zipcode!">
574
+
575
+ <input type="hidden" name="address" value="!address!">
576
+
577
+ <input type="hidden" name="attribute" value="!attribute!">
578
+
579
+ <input type="hidden" name="comment" value="!comment!">
580
+
581
+ <input type="button" value="前に戻る" onclick="history.back()">
582
+
583
+ <input type="submit" value="送信する">
584
+
585
+ </form>
586
+
587
+ </body>
588
+
589
+ </html>
590
+
591
+
592
+
593
+ tmpl/error.tmpl
594
+
595
+
596
+
597
+ <!doctype html>
598
+
599
+ <html>
600
+
601
+ <head>
602
+
603
+ <meta charset="utf-8">
604
+
605
+ <style type="text/css">
606
+
607
+ p.msg{
608
+
609
+ color:red;
610
+
611
+ }
612
+
613
+ </style>
614
+
615
+ <title>エラー</title>
616
+
617
+ </head>
618
+
619
+ <body>
620
+
621
+
622
+
623
+ <p><b>エラーが発生しました。</b></p>
624
+
625
+ <p class="msg">!message!</p>
626
+
627
+
628
+
629
+ <form>
630
+
631
+ <input type="button" value="前画面に戻る" onclick="history.back()">
632
+
633
+ </form>
634
+
635
+
636
+
637
+ </body>
638
+
639
+ </html>
640
+
641
+
642
+
643
+ tmpl/send.tmpl
644
+
645
+
646
+
647
+ <!doctype html>
648
+
649
+ <html>
650
+
651
+ <head>
652
+
653
+ <meta charset="utf-8">
654
+
655
+ <title>送信完了</title>
656
+
657
+ </head>
658
+
659
+ <body>
660
+
661
+
662
+
663
+ <p>ありがとうございました。</p>
664
+
665
+ <form>
666
+
667
+ <input type="button" value="トップへ戻る" onclick="location.href='!top!';">
668
+
669
+ </form>
670
+
671
+
672
+
673
+ </body>
674
+
675
+ </html>
676
+
677
+
678
+
393
679
  ```
394
680
 
395
681