This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Develop for ES6 usage if youree going to use it on ES5 just remove the imports and change the usages of Inputs.TextInput to TextInput and so on with the rest | |
import {Vvveb} from './builder' | |
import * as Inputs from './inputs' | |
var bgcolorClasses = ["is-primary", "is-success", "is-danger", "is-warning", "is-info", "is-light", "is-dark", "is-facebook", "is-twitter", "is-white", "is-black"] | |
var bgcolorSelectOptions = | |
[{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class MySQL { | |
private $link = null; | |
private $info = array( | |
'last_query' => null, | |
'num_rows' => null, | |
'insert_id' => null | |
); | |
private $connection_info = array(); |