Closed Thread
Results 1 to 4 of 4

Thread: help regarding xampp

  1. #1
    swathin2 is offline Newbie
    Join Date
    Dec 2008
    Posts
    12
    Rep Power
    0
    hi need some help regarding xampp

    please help me out how to execute mysql in this

    how to create a new table and do some modifications in this xampp tool
    Last edited by WingedPanther; 12-31-2008 at 06:49 AM. Reason: Double post

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Aug 2007
    Location
    Gizeh, Al Jizah, Egypt, Egypt
    Posts
    8,675
    Blog Entries
    12
    Rep Power
    81

    Re: help regarding xampp

    you can open the mysql console in the xampp directory, when you open it enter your password and select(or create) a database
    to select a database do this "\u <database name>"
    to create a database do this "create database <database name>;" and select the created database
    after that create a table by the regular sql statements which may look like:
    Code:
    CREATE TABLE `users` (
    `id` INT NOT NULL auto_increment ,
    `name` VARCHAR( 20 ) NOT NULL ,
    `password` VARCHAR( 20 ) NOT NULL ,
    `email` VARCHAR( 20 ) NOT NULL ,
    PRIMARY KEY ( `id` ) 
    );
    i wish that ive helped you
    yo homie i heard you like one-line codes so i put a one line code that evals a decrypted one line code that prints "i love one line codes"
    Code:
    eval(base64_decode("cHJpbnQgJ2kgbG92ZSBvbmUtbGluZSBjb2Rlcyc7"));
    www.amrosama.com | the unholy methods of javascript

  4. #3
    tecktalk is offline Programmer
    Join Date
    May 2008
    Posts
    179
    Rep Power
    0

    Re: help regarding xampp

    Yes Amarosama.. that's nice For me.. nice one.. thanks...
    _______________________
    gadgets
    women for tedisco

  5. #4
    micheljaw is offline Newbie
    Join Date
    Apr 2009
    Posts
    4
    Rep Power
    0

    Re: help regarding xampp

    Try:
    localhost/mysite/index.php

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. XAMPP Installation PHP Error
    By V o i D a S s in forum PHP Development
    Replies: 4
    Last Post: 10-18-2011, 08:17 PM
  2. Beginner Installing XAMPP part 2
    By bbqroast in forum PHP Tutorials
    Replies: 5
    Last Post: 07-24-2011, 03:24 PM
  3. xampp not working
    By umarmir_123 in forum PHP Development
    Replies: 10
    Last Post: 08-01-2010, 08:16 AM
  4. How to uninstall XAMPP in Windows XP
    By Shanpav in forum Database & Database Programming
    Replies: 7
    Last Post: 04-30-2009, 12:32 PM
  5. xampp error
    By noob117 in forum PHP Development
    Replies: 1
    Last Post: 05-13-2007, 07:36 PM

Tags for this Thread

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