views:

45

answers:

3

how to generate embd code/blgger like widget with CodeIgniter? please give me the idea how to make

A: 

Generating any front-end code in CI is no different than regular PHP. Simply echo the html where you wish it to be. If you were a little more specific, I could help you more..

treeface
A: 

Using an iframe is the simplest solution. Hand out the iframe code to your users.

<iframe src="your url here"></iframe>

Checkout http://jsfiddle.net/vXu8a/

Anurag
well, if i wanted to get solution as like http://jsfiddle.net/vXu8a/1/<script src="http://myonepage.com/eyoosuf/widgets/card.js" type="text/javascript"></script>​how to proceed?
eyoosuf
+3  A: 

Lets say your widget html is rendered as an iframe.

For e.g.

<iframe src='http://somedomain/.../some-widget'&gt;&lt;/iframe&gt;

Now, your embed code could be as simple as:

<script src="http://yourdomain/.../something.js"&gt;&lt;/script&gt;

All you have to do inside something.js is :

document.write("<iframe src='http://somedomain/.../some-widget'&gt;&lt;/iframe&gt;");
letronje
thanks.... a simple solution, but i was searching for days... :)
eyoosuf