Your IP : 3.149.234.78
<?php //This is to set the IP of the server where this app will be hosted $host = 'localhost'; $port = '8080'; $dir= 'Parent'; $type='http'; $instCode='aips'; $branchCode='1'; $instName = 'Demo School'; if($port =='') { $server = $type."://".$host."/".$dir."/"; //echo $server; } if($port !='') { $server = $type."://".$host.":".$port."/".$dir."/"; //echo $server; } ?> |