Search results

  1. S

    PHP session_start error

    this error occured cause there has space or some html code before session start to avoid this use ob_start() function top of the page and do not forget to call ob_end() bottom of the page.
  2. S

    importance of using methods in creating java programs?

    To initialize object from class you need a reference of class with "new" keyword like this class object name=new class(); ex: NewCustom cusObj=new NewCustom(); now you can use any variable form class with this object.
Back
Top