Hi abdelhediiahmed just define a new php document and print the calculated values in the svg document:
<?php $b=20; $c=10; $a=$b+$c; ?> <svg ...> <rect x="20" y="20" width="<?php echo $a; ?>" height="<?php echo $b; ?>" /> </svg> Since the php code is executed first, the svg document is then complete for the rendering in a viewer or browser. Regards Olaf abdelhediiahmed wrote: > > > please; > > is there someone who can tell me how to to include php scripts in svg > documents ? > I mean how to include values of php script in asvg document. > Thanks -- Dr. Olaf Schnabel ETH Zurich Institute of Cartography CH-8093 Zurich Switzerland tel: ++41 44 633 3031 fax: ++41 44 633 1153 e-mail: [EMAIL PROTECTED] www1: http://www.ika.ethz.ch/schnabel www2: http://www.e-cartouche.ch ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

