Jump to content

Encapsulating code


CanMan2004

Recommended Posts

Hi everyone

sorry to post again, but im having a problem figuring something out, basically I have a whole load of php code which I want to capture and then print somewhere else on the page.

My code I use is

[code]$idnum = $rows['id'];
print $idnum;
if ($num > 1)
{
print " AND ";
}
print " ";
}[/code]

Basically I want to take the above and somehow encapsulate it so that I can print it on the page.

When the above code is printed, it looks like

[code]'23' AND '45' AND '65' AND ''[/code]

So I want to be able to produce

[code]'23' AND '45' AND '65' AND ''[/code]

somewhere else on the page, I guess I need to encapsulate using something like

[code]$encapsulatedcode = "<CODE IN HERE>";[/code]

But that doesnt seem to work for me

Any help would be great

Regards

Dave
Link to comment
https://forums.phpfreaks.com/topic/24135-encapsulating-code/
Share on other sites

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.