Hi there,
I am displaying some graphs in SVG. They are created in PHP, and, for Safari no problem, inserted like this:
But it seems that other browsers have a problem with it. If I am supposed to use the OBJECT tag, do i need to put the SVG than in a separate file? Or is there a possibility to avoid that?
Thanks for any help!
I am displaying some graphs in SVG. They are created in PHP, and, for Safari no problem, inserted like this:
Code:
<?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg width="1090" height="101.3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
Thanks for any help!
Comment