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
2010-07-28 18:41:57
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
2010-07-28 18:55:41
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
2010-07-30 05:24:17
+3
A:
Lets say your widget html is rendered as an iframe.
For e.g.
<iframe src='http://somedomain/.../some-widget'></iframe>
Now, your embed code could be as simple as:
<script src="http://yourdomain/.../something.js"></script>
All you have to do inside something.js is :
document.write("<iframe src='http://somedomain/.../some-widget'></iframe>");
letronje
2010-08-17 13:44:37