Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 30th, 2012  |  syntax: None  |  size: 0.58 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Put link into php
  2. if($_POST['rb_elt_accommodation']=="Yes")
  3. $accomodation_val .= "Participants must deal directly with the hotel. Please call the hotel direct at +xxxxxx. Details on accomodation booking are available"echo '<a href="http://abc.com">here</a>.'";
  4.        
  5. if ($_POST['rb_elt_accommodation'] == "Yes")
  6. {
  7.     $accomodation_val .= 'Participants must deal directly with the hotel.
  8.                           Please call the hotel direct at +xxxxxx.
  9.                           Details on accomodation booking are available
  10.                           <a href="http://abc.com">here</a>.';
  11. }