Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2.  
  3. $registrationInfo = $connect->select("SELECT * FROM `registrationinfo` WHERE `orderId`= '".$order_id."' LIMIT 1")->fetch();
  4.  
  5. if(isset($registrationInfo['serviceselectoptie']) AND isset($registrationInfo['serviceconsult']))
  6. { $titellist = '<tr><td bgcolor="#DEDEDE" style="padding: 5px 5px 5px 5px;width:175px;">
  7. ' .$registrationInfo['serviceselectoptie'].':
  8. </td><td style="padding: 5px 5px 5px 5px;">'.$registrationInfo['serviceconsult'].
  9. '</td></tr>'; }
  10. else if(!isset($registrationInfo['serviceselectoptie']) AND isset($registrationInfo['serviceconsult'])) {
  11. $titellist = '<tr><td bgcolor="#DEDEDE" style="padding: 5px 5px 5px 5px;width:175px;">
  12. Bestelling:</td><td style="padding: 5px 5px 5px 5px;">'.$registrationInfo['serviceconsult'].'</td></tr>';
  13. }
  14. else { $titellist = ""; }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement