" problems with this Web page might prevent it from being displayed properly or functioning properly. In the featur, you can display this message by double-clicking the warning icon displayed in the status bar.
Line: 2
Char: 293734
Error Code: 0
URL http://localhost/unit2.php
"
bu hatayı nasıl önleyebilirim bu arada unit2.php içerisindeki kod şu şekildedir.
Kod: Tümünü seç
<?php
require_once("vcl/vcl.inc.php");
//Includes
use_unit("menus.inc.php");
use_unit("forms.inc.php");
use_unit("extctrls.inc.php");
use_unit("stdctrls.inc.php");
//Class definition
class Unit2 extends Page
{
public $MainMenu1 = null;
public $Memo1 = null;
public $PopupMenu1 = null;
public $LeftFrame = null;
public $CenterFrame = null;
}
global $application;
global $Unit2;
//Creates the form
$Unit2=new Unit2($application);
//Read from resource file
$Unit2->loadResource(__FILE__);
//Shows the form
$Unit2->show();
?>