phpbb

  1. M

    Which is better, MyBB or phpBB?

    Why?
  2. A

    fix the php.ini

    I've PHP 7.0.8 installed along with Apache 2.4.18 and i've Mysql. I'm hosting with different name(other than Localhost)... i make a virtual host and place my phpMyAdmin there and after that it tell me mbstrig is missing. it's my 5th virtual host and i've made no change in my php.ini but still it...
  3. chinmay

    What is Data Conversion?

    Assignments between types whether they are basic or user-defined, are handled by the compiler. If the variables are of different basic types compiler calls a special routine to convert the value. But if we want to convert between user-defined data type and basic types we have to write conversion...
  4. chinmay

    What are the different modes of storing an ASP.NET session?

    What are the different modes of storing an ASP.NET session?
  5. chinmay

    What is the difference between strstr & stristr?

    What is the difference between strstr & stristr?
  6. chinmay

    What is Google Latest Updation For SEO ?

    What is Google Latest Updation For SEO ?
  7. chinmay

    What is Overriding?

    When we have to give diverse execution in a kid class than the one gave by base class, we characterize the same system with same marks in the youngster class and this is called overriding.
  8. chinmay

    What are Partial Classes in Asp.Net 2.0?

    What are Partial Classes in Asp.Net 2.0?
  9. chinmay

    Regular Expression Syntax (Perl)

    Perl has long been considered one of the most powerful parsing languages ever written,and it provides a comprehensive regular expression language that can be used to search and replace even the most complicated of string patterns. The developers of PHP felt that instead of reinventing the...
  10. chinmay

    Grouping Elements with <div> and <span> in HTML

    The <div> and <span> elements allow you to group several elements to create sections or subsections of a page. On their own, they will not affect the appearance of a page, but they are commonly used with CSS to allow you to attach a style to a section of a page . For example, you might want to...
  11. chinmay

    How Can I Specify a Storage Engine at Creation Time, or Change It Later?

    You can selectively assign storage engines at creation time by passing along the attribute TYPE=TABLE_TYPE, and you can convert a table later with the ALTER command or by using the mysql_convert_table_format script, which comes with your MySQL distribution.
  12. chinmay

    Testing a Function in PHP??

    If compatibility with various PHP versions is especially important to your script, it’s useful to be able to check for the existence of functions. The function function_ exists does just what you’d expect. It takes a string with a function’s name and returns TRUE or FALSE depending on whether...
Back
Top