URLの値を$_GETで受け取ってテキストボックスの中に表示させたいのですが上手くいきません。
GETで受け取った値を変数に代入して、その変数をテキストボックスのvalueの中に書けば表示できると考えたのですができないので教えていただけないでしょうか。
php
1<?php 2 session_start(); 3 require('dbconnect.php'); 4 require("nav_user.php"); 5 6 if(isset($_GET['y']) and isset($_GET['m']) and isset($_GET['d']) and isset($_GET['w']) and isset($_GET['t1']) and isset($_GET['t2']) and isset($_GET['qm'])) { 7 $y = $_GET['y']; 8 $m = $_GET['m']; 9 $d = $_GET['d']; 10 $w = $_GET['w']; 11 $t1 = $_GET['t1']; 12 $t2 = $_GET['t2']; 13 $qm = $_GET['qm']; 14 } 15// echo $qm; 16// exit; 17 18 ?> 19 20 <!DOCTYPE html> 21 22<html> 23<head> 24<meta charset="UTF-8"> 25 26<meta http-equiv="X-UA-Compatible" content="IE=edge"> 27<meta name="viewport" content="width=device-width, initial-scale=1"> 28<title>追加・削除</title> 29 30<style type="text/css"> 31 32</style> 33</head> 34 35<body> 36 37 <h2>追加・削除</h2> 38 39 40 41 <h3>追加</h3> 42 <form action="" method="post" enctype="multipart/form-data"> 43 <button type=“button” onclick="location.href='reservation-apply2.php'">戻る</button> 44 45 <!-- <input type="submit" value="仮予約" /> --> 46 <p>使用日<input type="text" name="year" size="2" value="<?php echo $y ;?>">年 47 <input type="text" name="month" size="1" value="<?php echo $m ;?>">月 48 <input type="text" name="day" size="1" value="<?php echo $d ;?>">日 49 <input type="text" name="week" size="4" value="<?php echo $w.'曜日' ;?>"> 50 </p> 51 <p>行事名<input type="text" name="g_name" size="20" value="<?php echo $qm ;?>"></p> 52 <p>使用時間</p> 53 <select name="time1"> 54 <?php for($t1;$t1<$t2;$t1++){ 55 print('<option value="' .$t1. '">' .$t1. ' 時</option> '); 56 } 57 ?> 58</select>~ 59 60<select name="time2"> 61 <?php for($t2;$t3<$t2;$t2--){ 62 print('<option value="' .$t2. '">' .$t2. ' 時</option>'); 63 } 64 65 ?> 66</select> 67 <table class="table table-striped table-bordered" > 68 <tr> 69 <?php if($w=='土' || $w=='日') :?> 70 <td>土日予約セット</td> 71 </tr> 72 <tr> 73 <td> 74 <a href="#" class="btn btn-primary" role="button"><?php 75 $e = $d +1; 76 echo "{$d}日(土){$e}日(日)" ;?></a> 77 </td> 78 <?php endif; ?> 79 </tr> 80 <tr> 81 <td>毎週予約セット</td> 82 </tr> 83 <tr> 84 <td> 85 <ul> 86 <li> 87 土曜日 88 <a href="#" class="btn btn-primary" role="button">4日(土)11日(土)18日(土)25日(土)</a> 89 </li> 90 </td> 91 </tr> 92 </form> 93 94</table> 95 96</body> 97</html> 98
回答4件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/06 17:49