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?