| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/isvtg/ |
Upload File : |
<?php
// Draw coordinate system
echo "<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='1200' height='405'>";
echo "<rect x = '225' width = '800' height = '400' fill = 'rgb(234,250,241)' stroke-width = '3' stroke = 'rgb(25,111,61)' />";
echo "<g stroke='gray' stroke-width='1'>";
$k=0;
for ($x = 225; $x < 1025; $x=$x+12) {
$k++;
$x1=$x;
$x2=$x;
if ($k==2){
$y1=400;
$y2=390;
echo "<line x1=".$x1." y1=".$y1." x2=".$x2." y2='0' />";
$k=0;
}
else {
$y1=400;
$y2=390;
echo "<line x1=".$x1." y1=".$y1." x2=".$x2." y2=".$y2." />";
}
}
echo "</g>";
?>