Skip to content

Commit

Permalink
removed title variable from header
Browse files Browse the repository at this point in the history
  • Loading branch information
Shemona Singh authored and Shemona Singh committed Dec 4, 2017
1 parent f4837a5 commit 92c6dca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
15 changes: 7 additions & 8 deletions db/lamp_2017-12-01.sql → db/lamp_2017-12-03.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Host: 127.0.0.1 (MySQL 5.7.20)
# Database: lamp
# Generation Time: 2017-12-01 20:43:00 +0000
# Generation Time: 2017-12-04 00:14:29 +0000
# ************************************************************


Expand All @@ -27,7 +27,6 @@ DROP TABLE IF EXISTS `Tweets`;

CREATE TABLE `Tweets` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`tweet_id` int(11) DEFAULT NULL,
`tweet` char(140) DEFAULT NULL,
`date_time` datetime DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
Expand All @@ -37,13 +36,13 @@ CREATE TABLE `Tweets` (
LOCK TABLES `Tweets` WRITE;
/*!40000 ALTER TABLE `Tweets` DISABLE KEYS */;

INSERT INTO `Tweets` (`id`, `tweet_id`, `tweet`, `date_time`, `user_id`)
INSERT INTO `Tweets` (`id`, `tweet`, `date_time`, `user_id`)
VALUES
(1,1,'testing tweet! one two three','1000-01-01 00:00:00',1),
(2,2,'hiiii this is my second tweet','1000-01-01 00:00:00',1),
(3,3,'first twitter tweet omg so kewl','1000-01-01 00:00:00',2),
(4,4,'3rd tweet now so pro','1000-01-01 00:00:00',1),
(5,5,'tweet tweet tweet cant stop me now','1000-01-01 00:00:00',2);
(1,'testing tweet! one two three','2004-01-01 00:00:00',1),
(2,'hiiii this is my second tweet','2003-01-01 02:06:27',1),
(3,'first twitter tweet omg so kewl','4094-01-01 01:35:10',2),
(4,'3rd tweet now so pro','7740-01-01 07:36:43',1),
(5,'tweet tweet tweet cant stop me now','3920-01-01 22:34:17',2);

/*!40000 ALTER TABLE `Tweets` ENABLE KEYS */;
UNLOCK TABLES;
Expand Down
1 change: 0 additions & 1 deletion www/application/views/templates/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
</head>
<body>
<h1><?php echo $title; ?></h1>
<h2>Hello</h2>

0 comments on commit 92c6dca

Please sign in to comment.