Login   Register  
PHP Classes
elePHPant
Icontem

File: tipss.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of omid zarifi  >  Day Tips Show  >  tipss.sql  >  Download  
File: tipss.sql
Role: Auxiliary data
Content type: text/plain
Description: mysql db file
Class: Day Tips Show
Retrieve the tip of the day from a MySQL database
Author: By
Last change:
Date: 2011-08-11 07:10
Size: 1,142 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump
-- version 3.1.3.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Aug 11, 2011 at 01:59 PM
-- Server version: 6.0.10
-- PHP Version: 5.2.9-1

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `tipss`
--

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

--
-- Table structure for table `daytips`
--

CREATE TABLE IF NOT EXISTS `daytips` (
  `daytip_id` int(11) NOT NULL AUTO_INCREMENT,
  `daytip_contant` varchar(500) COLLATE utf8mb3_unicode_ci NOT NULL,
  `daytip_writter` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL,
  PRIMARY KEY (`daytip_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci AUTO_INCREMENT=4 ;

--
-- Dumping data for table `daytips`
--

INSERT INTO `daytips` (`daytip_id`, `daytip_contant`, `daytip_writter`) VALUES
(1, 'Day Tip Class', 'omid'),
(2, 'Day Tip Class is best', 'omid'),
(3, 'fdg', 'fdg');