Jump to content

EOF


An7hony

Recommended Posts

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

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

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.