Skip to content

Instantly share code, notes, and snippets.

View lablnet's full-sized avatar
🎯
Focusing

Muhammad Umer Farooq lablnet

🎯
Focusing
View GitHub Profile
@lablnet
lablnet / zest.html
Last active August 29, 2018 02:31
Zest
<h1>Before Using Zest Framework</h1><p>
Before using Zest Framework it is important to understand why it is a good idea to use the Zest Framework.</p><p>As for PHP, there are many PHP frameworks available nowadays, so the question is raised as to why we should use ZestFramework.</p><p>The main purpose of Zest framework is to provide a very lightweight framework without any external dependencies except core and autoloader. So in this case Zest Framework is very light in weight the core files size of zest framework is less then one 1MB
</p><div><h1>Key benefits</h1>
Zest is a simple/light weight yet powerful PHP MVC framework for rapid application development that is suited for small to medium and large scale apps and APIs.
<h2>Advance Routing system</h2>
Zest Framework provides advance routing system
<ol>
<li>Flexible regular expression routing</li>
@lablnet
lablnet / register.php
Created July 24, 2018 03:18
Fixed error
<?php
function sanitizeInput ($inputText){
$inputText = strip_tags($inputText);
$inputText = str_replace(" ", "", $inputText);
return $inputText;
}
function sanitizeString ($inputText){
$inputText = strip_tags($inputText);
<?php
try{
$db = new PDO("mysql:host=localhost;dbname=lablnet_cms", "root" ,"");
$db->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
$db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
}catch(Exception $e){
die($e->getMessage());
}
?>
@lablnet
lablnet / JSON.php
Last active July 13, 2017 08:37
How to export database records in json file
<?php
require_once "db.php";
$sth=$db->prepare("select * from users");
$sth->execute();
while($row = $sth->fetchObject())
{
$id=$row->id;
$fname = $row->fname;
$lname = $row->lname;
$username = $row->username;