An7hony Posted July 8, 2010 Share Posted July 8, 2010 How would i call safe_output() when using <<< EOF Heres my code: <?php $job_list = <<< EOH <div class="joblisting"> <div id="jobtools"> <h1>Job Tools</h1> <div class="content"> <ul> <li><a href="#" title="Apply for this Job" class="apply">Apply for job</a></li> <li><a href="#" title="Save this Job" class="savejob">Save this job</a></li> </ul> </div> </div> <div class="jobtop"> <div class="jobimage"><img src="skin/images/logo.gif" /></div> <div class="headers"> <h1><a href="jobs.php?view=show&id=$id; ?>"> safe_output($title); </a></h1> ?> Link to comment https://forums.phpfreaks.com/topic/207117-eof/ Share on other sites More sharing options...
Barand Posted July 8, 2010 Share Posted July 8, 2010 Either split the text into 2 parts with the function call in the middle $job_list = "string 1st part " . safe_output($title) . "string second part". or assign The function result to variable and put that in the string $safeTitle = safe_output($title); $job_list = "string 1st part $safeTitle string second part"; Link to comment https://forums.phpfreaks.com/topic/207117-eof/#findComment-1082986 Share on other sites More sharing options...
An7hony Posted July 21, 2010 Author Share Posted July 21, 2010 Thanks Perfect Link to comment https://forums.phpfreaks.com/topic/207117-eof/#findComment-1088975 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.