Hem koşulları yürütme PHP IF Bildirimi

0 Cevap php

Şu anda benim sitenize entegre bir ödeme sistemi entegre ediyorum. Ben ödeme yoluyla ya gitti eğer temelde müşteriye güvenli sunucu ve görüntüler gelen veri alır bir yanıt komut dosyası var. Benim sorunum ise ifadesi aslında ödeme başarılı ya da başarısız olmuş olsa bile, müşteriye hem mesajları gösterme olmasıdır.

Burada ise ifadedir:

<?
if ($result == "00") && ($payersetup == "00") && ($pmtsetup =="00"){
?>  
Thank you
<br/><br/>
To return to the home page <a href="http://www.xx.com"><b><u>click here</u></b></a>
<br/><br/>

<?
} else {
?>

<br/><br/>
There was an error processing your subscription.  
To try again please <a href="http://www.xx.com/signUp.html"><b><u>click here</u></b></a><br><BR>
Please contact our customer care department at <a href="mailto:support@xx.com"><b><u>support@xx.com</u></b></a>

<?
}
?>

Ben de ancak bu yöntemle, vücut boştur, bu şu şekilde yapıyor denedim - Hiçbir metin görüntülenir.

<?
if ($result == "00") && ($payersetup == "00") && ($pmtsetup =="00"){
$thanks = "Thank you! \n\n To Return to the homepage <a href=http://www.epubdirect.com>Click Here</a>"; 
echo $thanks;
} 
else 
{
$nothanks = "There was an error processing your subscription.\n\n To try again please <a href=http://www.epubdirect.com/signUp.html>click here</a>. \n\n If the problem persists, please contact our customer care department at <a href=mailto:support@epubdirect.com>support@epubdirect.com</a>";
echo $nothanks;
}
?>

Ve bundan sonra ayrı bir belgeye HTML koymak ve require_oncenin (kullanmaya çalıştım) ama bu da işe yaramadı - aynı sonucu önceki gibi - boş gövde.

Herhangi biri herhangi bir fikirleri var mı?

EDIT:

Ancak ben hala boş sayfa sorunu yaşıyorum önerilen bazı yollar denedim: (

Burada gitti yoludur ->

<?
if (($result == "00") && ($payersetup == "00") && ($pmtsetup =="00"))
{
require_once('thankyou.html');
} 
else 
{
require_once('error.html');
}
?>

Bu hala bana sözdizimi doğru görünüyor olsa bile boş bir sayfa verir?

0 Cevap