This file contains hidden or 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 | |
// Main Script by: Armand Niculescu ( http://www.richnetapps.com/php-download-script-with-resume-option/) | |
// Re-Developed by Oritro Ahmed ( http://facebook.com/theoritro) | |
// This will Stop Showing Any Error MSG | |
@ini_set('error_reporting', E_ALL & ~ E_NOTICE); | |
//This will turn off Server Side Compression. | |
@apache_setenv('no-gzip', 1); | |
@ini_set('zlib.output_compression', 'Off'); |
This file contains hidden or 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head> | |
<title>Oritro New theme!</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<style type="text/css"> | |
body{ | |
background-color:#dc8; | |
font-size:16px; | |
margin:0; |
This file contains hidden or 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
<html> | |
<head> | |
<title> Test </title> | |
</head> | |
<body> | |
<h1> test </h1> |
This file contains hidden or 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 | |
// PHP Simple Secure Form Project- Oritro Ahmed | |
// 11 November, 2012 | |
// Released Under Mozilla Public license (http://www.mozilla.org/MPL/2.0/) | |
// We are using some Constant to work easily everywhere | |
define('DB_HOST', 'localhost'); // Database host | |
define('DB_USER', 'root'); // Database User | |
define('DB_PASSWORD', ''); // Database User Password | |
define('DB_DATABASE', 'secureform'); // Database Name |
This file contains hidden or 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 SMTPClient | |
{ | |
// A function for Setting up SMTP | |
function SMTPClient ($SmtpServer, $SmtpPort, $SmtpUser, $SmtpPass, $from, $to, $subject, $body) | |
{ | |
$this->SmtpServer = $SmtpServer; | |
$this->SmtpUser = base64_encode ($SmtpUser); | |
$this->SmtpPass = base64_encode ($SmtpPass); |
This file contains hidden or 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 | |
// The Use of fetcher.function.php - Oritro Ahmed | |
//[www.oritro.com] | |
//Filename: fetcher.php | |
//Usefull for Link Shortener, link generator, Backlink generator | |
// A part Of Tankz Easy PHP Use Scripts | |
$url = 'http://www.oritro.com/'; | |
$content = file_get_contents($url); |
This file contains hidden or 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 | |
//Simple Image Resizing Script Using PHP- Oritro Ahmed | |
// [www.oritro.com] | |
// > Require GD library 2.x | |
// $image is the image file you want to resize | |
// $type is the type of image file, this function support image/jpeg, image/gif, image/png | |
// $dest is the Destination of the Generated image |
NewerOlder