Mayfield Global Knowledge Center

Google

View Questions by Category

Category Icon Ajax (1)
Asynchronous JavaScript and XML
Category Icon ASP.NET 2.0 (3)
Category Icon CSS (1)
Category Icon JavaScript (3)
Category Icon PHP (1)

Category » Web Developmentrss button

There were 4 questions found in this category:

  1. questionHow do I install XAMPP on Microsoft Windows XP?
    Many people know from their own experience that it's not easy to install an Apache web server and it gets harder if you want to add MySQL, PHP and Perl. XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use. Ensure that y ...
  2. questionHow do I setup a local Apache / MySQL / PHP web development environment on Linux?
    Many solutions are available for a local development environment in Linux. We prefer XAMPP for it's user-friendly installation and configuration. XAMPP also provides up to date versions of Apache / MySQL / PHP / Perl. Download the latest version of XAMPP and follow the step-by-step instructions ...
  3. questionHow do I setup a local Apache / MySQL / PHP web development environment on Mac OS X?
    There are multiple solutions available for your local development environment. However, we choose MAMP because of it's simple installation and configuration. MAMP also provides up to date Apache / MySQL / PHP release versions. Download and install MAMP.Configure the MAMP Apache / MySQL ports.Se ...
  4. questionUsing regular expressions, what metacharacters do I use to specify a start and end of the line?
    The ^ (caret) indicates start of a line while the $ (dollar) indicates the end of the line.For example: ^cat$ will only locate the word cat