Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help: SQL without phpmyadmin?
#1
I've been learning SQL through phpmyadmin, but I also want to see what it's like without phpmyadmin. However, I'm having some problems.
I have
Code:
-- phpMyAdmin SQL Dump
-- version 3.1.2deb1ubuntu0.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Dec 24, 2009 at 01:58 AM
-- Server version: 5.0.75
-- PHP Version: 5.2.6-3ubuntu4.4

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

--
-- Database: `mydomain`
--

-- --------------------------------------------------------

--
-- Table structure for table `people`
--

CREATE TABLE IF NOT EXISTS `people` (
  `id` int(6) NOT NULL,
  `name` char(100) NOT NULL,
  `telephone` char(50) NOT NULL,
  `birthday` char(50) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `people`
--

INSERT INTO `people` (`id`, `name`, `telephone`, `birthday`) VALUES
(100100, 'ross', '222 222 222', '3 january'),
(200200, 'John', '999 999 999', '19 may'),
(300300, 'jane', '888 888 888', '19 july');

saved into Test.sql

I want to see my chart or some sort of result in my browser, how do I do this. I've already tried putting it in /var/www/. However, that didn't work, it only displayed Test.sql in plain text.
Reply


Messages In This Thread
Help: SQL without phpmyadmin? - by nevets04 - 12-24-2009, 01:06 AM
RE: Help: SQL without phpmyadmin? - by Gaijin - 12-24-2009, 07:46 AM
RE: Help: SQL without phpmyadmin? - by nevets04 - 12-24-2009, 12:28 PM
RE: Help: SQL without phpmyadmin? - by Gaijin - 12-24-2009, 12:29 PM
RE: Help: SQL without phpmyadmin? - by nevets04 - 12-24-2009, 12:38 PM
RE: Help: SQL without phpmyadmin? - by Gaijin - 12-24-2009, 12:44 PM
RE: Help: SQL without phpmyadmin? - by nevets04 - 12-24-2009, 01:04 PM
RE: Help: SQL without phpmyadmin? - by wat - 12-30-2009, 11:47 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  how to open a 750 mb database,sql file? etc 17 6,638 08-21-2011, 03:57 AM
Last Post: AceInfinity
  Why not use this to help prevent SQL injection? ★Cooldude★ 29 12,139 06-30-2011, 07:06 AM
Last Post: ControL1
  Help. Having trouble logging into phpmyadmin. nevets04 4 1,824 12-24-2009, 12:08 AM
Last Post: nevets04
  SQL Interacting with Form Cppsean 3 1,455 10-19-2009, 12:21 PM
Last Post: Omniscient

Forum Jump:


Users browsing this thread: 1 Guest(s)