Page 4 of 4 FirstFirst ... 234
Results 31 to 34 of 34

Thread: Want to Learn Php..?? Here is the Way...

  1. #31
    Join Date
    Jul 2011
    Posts
    5

    Talking

    gash! this is great!!!!!

  2. #32
    Join Date
    Sep 2011
    Posts
    10

    Default

    i hope every one for teach :D

  3. #33

    Default

    1 What is the difference between INCLUDE and REQUIRE
    INCLUDE and REQUIRE
    functions are same to include an external file, we can say that the main difference is how they handle the failure,
    if the included file doesn't exist include() generate a warning message but require generates a (fatal error) and script execution stop. at the same time include_once() and require_once() are function to include a file only once to avoid variable redefination but if the file included more than once require_once() produces a fatal error while include_once() produce a warning message.

  4. #34
    Join Date
    Apr 2012
    Posts
    6

    Default

    very nice ty

Page 4 of 4 FirstFirst ... 234

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •