![]() |
Using CodeIgniter to Generate a Forum Signature - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Using CodeIgniter to Generate a Forum Signature (/showthread.php?tid=27778) |
Using CodeIgniter to Generate a Forum Signature - El Forum - 02-20-2010 [eluser]Unknown[/eluser] Hey guys, This is my first post so please bare with me if this has been covered already. I've tried scouring the forums and have not found a solution/similar question. What I am trying to do is allow users to create forum signatures that calls a function in my controller that simply returns an image. This is my (very simple) Signature controller thus far: Code: class Signature extends Controller{ Now what I want this to do when it is called is simply return the image so that it can be used in forum signatures that support the img tag. In my own forum (for testing purposes), I've tested this out and cannot get it working. The tag is as such: Code: [img]http://www.domain.com/whatever/signature[/img] Thanks alot for reading! ![]() |