Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Example of Bootstrap 3 Static Navbar</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> | |
<style type="text/css"> |
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
Bootstrap 3 - Carousel/Slider Collection | |
Article: http://sevenx.de/blog | |
Demo: http://sevenx.de/demo/bootstrap-carousel | |
Working Examples (inline Styles, CDN Scripts) | |
- minimal Bootstrap Markup changes | |
- minimal CSS Styles | |
- minimal jQuery |
21 | |
29 | |
32 435 | |
10 439 | |
4 438 | |
2 433 | |
4 428 | |
6 425 | |
10 420 | |
15 416 |
#include <windows.h> | |
#include <GL\glew.h> | |
#include <GL\freeglut.h> | |
// Salman Aslam | |
void SalmanAslamDisplay(void); // define function to display output | |
void SalmanAslamDrawDot(); // define function to draw dots | |
void SalmanAslamDrawDot(){ |
#include <windows.h> | |
#include <GL\glew.h> | |
#include <GL\freeglut.h> | |
// Salman Aslam | |
void SalmanAslamDisplay(void); // define function to display output | |
void SalmanAslamDrawDot(); // define function to draw dots | |
void SalmanAslamDrawDot(){ |
#include <windows.h> | |
#include <GL\glew.h> | |
#include <GL\freeglut.h> | |
// Salman Aslam | |
void SalmanAslamDisplay(void); // define function to display output | |
void SalmanAslamDrawDot(); // define function to draw dots | |
void SalmanAslamDrawDot(){ |
<?php | |
/** | |
* Created by PhpStorm. | |
* User: SALMAN ASLAM | |
* Date: 12-Jan-15 | |
* Time: 10:26 PM | |
*/ | |
// create connection | |
$mysqli = new mysqli('localhost','root','salman','company'); |
<?php | |
/** | |
* Created by PhpStorm. | |
* User: SALMAN ASLAM | |
* Date: 13-Jan-15 | |
* Time: 12:13 AM | |
*/ | |
// connect to database | |
try { | |
$pdo = new PDO('mysql:host=localhost; dbname=company;charset=utf8', 'root', 'salman'); |