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> ?> Quote Link to comment 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"; Quote Link to comment Share on other sites More sharing options...
An7hony Posted July 21, 2010 Author Share Posted July 21, 2010 Thanks Perfect Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.