Files
Leitgedanken/#jpgraph/src/Examples/barcsim_details.php
2022-11-21 09:47:28 +01:00

11 lines
217 B
PHP

<?php // content="text/plain; charset=utf-8"
if( empty($_GET['id']) ) {
echo 'Incorrect argument(s) to script <b>'.basename(__FILE__).'</b>.';
}
else {
echo 'Some details on bar with id='.$_GET['id'];
}
?>