Link to home
Start Free TrialLog in
Avatar of phillystyle123
phillystyle123Flag for United States of America

asked on

if logic inside php

<h1>Recurring payment info:</h1>
<p> '.$recurring_info.' </p>

I need this:

if $recurring_info=!"" :
<h1>Recurring payment info:</h1>
<p> '.$recurring_info.' </p>
<?php
$body_admon ='

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

</head>

<body>


<h1>Admin Order Confirmation</h1>

<p>Order Date: '.$order_date.' </p>
<h1>Credit Card Info:</h1>
<p>
<b>Credit Card number:</b> '.$hidden_card .'
<br>
<b>'.$ptype.':</b> <i>$'.$amount.'</i><br>

<h1>Recurring payment info:</h1>
<p> '.$recurring_info.' </p>


<h1>Tribute info:</h1>
<p> '.$tribute_info.' </p>

<h1>Donor info:</h1>
<p> '.$donor_info.' </p>
<h1>Please direct my gift to:</h1>
<p> '.$donation_to.' </p>
<h1>Additional information:</h1>
<p> '.$other_to.' </p>
</body>
</html>

';?>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of phillystyle123

ASKER

thanks-much appreciated
You're welcome, thanks for the points.