Can anyone work out why my bit of code here wont work for me ?
I am having a problem working out why the second lot works and the first part doesn't.
The link "http://www.mywebsite.com.au" works
The link "event_booking_new.php?events_id=";
$mesg .= $event_id; DOES NOT WORK…..
Code: Select all
$mesg .= $event_address;
$mesg .= "\n\n";
$mesg .= $invite_extra_text;
$mesg .= "\n\nIf you would like to attend, click here to book in event_booking_new.php?events_id=";
$mesg .= $event_id;
$mesg .= ".\n\nCheck out our other upcoming events at http://www.mywebsite.com.au.
$mesg .= "\n\n";
$mesg .= $signature_first_line;
Code: Select all
$mesg .= $event_details;
$mesg .= "<br><br>";
$mesg .= $invite_extra_text;
$mesg .= '<br><br>If you would like to attend, click here to <a HREF="http://www.mywebsite.com.au/event_booking_new.php?events_id=';
$mesg .= $event_id;
$mesg .= '">book in</a><br>Check out our other upcoming events at <a HREF="http://www.mywebsite.com.au">My Web Site</a>.';
$mesg .= "<br><br>";
$mesg .= $signature_first_line;