vote up 3 vote down star

Hi Guys,

Is there a way to generate an HTML file using a PHP script which has an SVG embedded where the SVG itself is dynamically generated by the PHP script?

Basically, I want to display a dynamically generated SVG image to a client but <embed>, <object> as well as <iframe> only refer to external sources while PHP generates the current HTML page only (and not the external sources)

Further, is there a Javascript solution possible where I add SVG elements in the current DOM one by one?

flag

Please explain the downvote. I am badly stuck in a project and if this is a duplicate, I would love to find the solution. – Crimson Oct 23 at 8:47
1  
Really not sure why this was downvoted – Neil Aitken Oct 23 at 8:52

2 Answers

vote up 3 vote down check

Try linking to your php file like this: <object href=svg_generator.php> <!-- other attributes necessary for embedding svg not listed here -->

link|flag
ohh.. :) missed that one out completely. Thanks – Crimson Oct 23 at 8:49
vote up 1 vote down

You can have a look at raphael http://raphaeljs.com/ a wonderful javascript library which make easy to manipulate svg objects in a cross-browser way.

I am sure that it will help you a lot

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.