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
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
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.