php ile bir url içine form değişkenleri geçen

4 Cevap php

Ben bir kullanıcı bir otel rezervasyonu için tarih / odaları seçmenizi sağlar aşağıdaki formu var.

<form action="booking-form.php" method="post">
  <fieldset>
    <div class="select-date">
      <label>Arrival Date</label>
      <select name="arrd" class="day">
        <option value="1" >1</option>
        ... snip ...
        <option value="24" selected="selected">24</option>
      </select>

      <select name="arrm" class="month">
        <option value="01" >January</option>
        ... snip ...
        <option value="11" selected="selected">November</option>
      </select>
      <select name="arry" class="year">
        <option value="2009" selected="selected">2009</option>
        ... snip ...
      </select>
    </div>
    <div class="more">
    <div class="info">
      <label>Days</label>
      <select name="days">
        <option value="1">01</option>
        ... snip ...
        <option value="7" selected="selected">07</option>
      </select>
    </div>
    <div class="info">
      <label>Rooms</label>
      <select name="rooms">
        <option value="1">01</option>
        ... snip ...
      </select>
    </div>
    </div>
    <input type="submit" value="Check availabilty"/>
    <input type="hidden"  name="submitted" value="TRUE"/>
  </fieldset>
</form>

Here is the php which is supposed to process the variables passed from the form and pass them via a url to the booking provider. Nothing happens when the form is submitted just a white screen with no errors.

<?php

 ini_set ('display_errors',1);  
 error_reporting (E_ALL & ~ E_NOTICE);  

 if (isset($_POST['submitted'])){

  $errors = array();

  // A bunch of if's for all the fields and the error messages.


  if (empty($_POST['arrd'])) {
	$errors[] = 'Please select a day';
} else{
	$arrd = ($_POST['arrd']);
}

if (empty($_POST['arrm'])) {
	$errors[] = 'Please select a month';
} else{
	$arrm = ($_POST['arrm']);
}

if (empty($_POST['arry'])) {
	$errors[] = 'Please select a year';
} else{
	$arry = ($_POST['arry']);
}

if (empty($_POST['non'])) {
	$errors[] = 'Please choose a number of nights';
} else{
	$non = ($_POST['non']);
}


if (empty($_POST['norooms'])) {
	$errors[] = 'Please choose a number of rooms';
} else{
	$norooms = ($_POST['norooms']);
}


if (empty($errors)){
$arrdate = $arrd . " " . $arrm ."" . $arry; 

$url ="https://portals.uk.rezlynx.net/DHPPORTAL/wfrmpakquery.aspx?SiteID=DHOLDHALL&arrdate=$arrdate&non=$non&norooms=$norooms";
 header('Location: $url');
exit();

 }

 else{
 foreach($errors as $msg){

 echo"-msg<br/>\n";
 }

 }

 ?>

Herkes eksik ben görebilir miyim?

Şimdiden teşekkürler ..

Dan

4 Cevap

PHP'nin tiftik denetleyicisi (php-l) aracılığıyla kod çalıştırırsanız, size hat 62 de (son satırı) bir sözdizimi hatası var görürsünüz

Sadece ilk "if" deyimi kapatılması gerekiyor kaşlı ayraç kaçırıyorsun.

Çizgi

header('Location: $url');

olmalıdır

header("Location: $url");

Değişkenler tek tırnak içinde değerlendirilmez.

Sveyaunu olabilir

header('Location: $url');
exit();

Deneyin Ya

header('Location: '.$url);
exit();

veya

header("Location: $url");
exit();
# using the double quotes will parse the $url variable

Eğer sadece formun eylem niteliğinde olduğunu URL kullanmak ve GET için yöntemini ayarlamak değil miyim?

<form action="https://portals.uk.rezlynx.net/DHPPORTAL/wfrmpakquery.aspx?SiteID=DHOLDHALL" method="get">
    [...]
</form>