code stringlengths 1 2.01M | language stringclasses 1
value |
|---|---|
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/**
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | PHP |
<?php
class connector {
private $con;
private $host;
private $user;
private $senha;
private $base;
private $idInsert = 0;
public function __construct() {
$this->host = "localhost";
$this->user = "root";
$this->senha = "";
$this->base = "... | PHP |
<?php
if($_GET['EmailID'] != null || $_GET['EmailID'] != ""){
include_once '../../SQL/connector.php';
$con = new connector();
$query = "DELETE FROM
`Aruana`.`Pessoa_has_Email`
WHERE
`Email_idEmail`='".$_GET['EmailID']."';";... | PHP |
<?php ?>
<form name="buscarCliente">
<table align="center">
<tr>
<th colspan="2">
Busca Avançada de Clientes
</th>
</tr>
<tr>
<td>
<select name="campo" onchange="buscar_cliente_pessoa();">
<option value="... | PHP |
<?php
$tel = "<table>
<tr>
<td>Telefone adicionado</td>
</tr>
</table>";
if ($_GET['ExibirClienteID'] != null || $_GET['ExibirID'] != "") {
continuar($_GET['ExibirClienteID']);
} else if ($_POST['ExibirClienteID'] != null || $_POST['ExibirClienteID'] !... | PHP |
<?php
if($_GET['ClienteID'] != null || $_GET['ClienteID'] != ""){
include_once '../../SQL/connector.php';
$con = new connector();
$query = "SELECT T.`ddi`,
T.`ddd`,
T.`numero`,
... | PHP |
<?php
if($_GET['ClienteID'] != null || $_GET['ClienteID'] != ""){
if($_GET['ddi'] != "" && $_GET['ddd'] != "" && $_GET['numero'] != "" && $_GET['tipo'] != ""){
include_once '../../SQL/connector.php';
$con = new connector();
$query ="INSERT INTO `Aruana`.`Telefone`
(`d... | PHP |
<?php ?>
<form name="cadastrarPessoa">
<table>
<tr>
<td colspan="2" align="center" id="cadastrar_cli_response">
</td>
</tr>
<tr>
<td>
Nome:
</td>
<td>
<input type="text" name="nome" size="40"></input... | PHP |
<?php
?>
<table>
<tr>
<td>DDI:</td>
<td>
<input type="text" name="ddi" size="3" maxlength="2" onkeypress="mascara(this,soNumeros)"></input>
</td>
<tr>
<td>DDD:</td>
<td>
<input type="text" name="ddd" size="3" maxlength="3" onkeypress="mascara(this... | PHP |
<?php
if (($_GET['ClienteID'] != "" && $_GET['ClienteID'] != null) &&
($_GET['pais'] != "" && $_GET['pais'] != null) &&
($_GET['estado'] != "" && $_GET['estado'] != null) &&
($_GET['cidade'] != "" && $_GET['cidade'] != null) &&
($_GET['bairro'] != "" && $_GET['bairro'] != null) &&
... | PHP |
<?php
if( ($_GET['nome'] != "" && $_GET['nome'] != null) &&
($_GET['cpf'] != "" && $_GET['cpf'] != null)){
include_once '../../SQL/connector.php';
$con = new connector();
$query="SELECT
`Pessoa`.`idPessoa`
`Pessoa`.`nome`
FROM `Aruana`.`Pessoa`
... | PHP |
<?php
if($_GET['ClienteID'] != null || $_GET['ClienteID'] != ""){
include_once '../../SQL/connector.php';
$con = new connector();
$query = "SELECT
E.`email`,
E.`idEmail`
FROM
Aruana.Ema... | PHP |
<?php
$campo = $_GET['campo'];
$relacao = $_GET['relacao'];
$valor = $_GET['valor'];
if($valor != ""){
$cor_titulo = "#00cc99";
$cor_linha1 = "white";
$cor_linha2 = "#ccff66";
include_once '../../SQL/connector.php';
$con = new connector();
... | PHP |
<?php
if($_GET['ClienteID'] != null || $_GET['ClienteID'] != ""){
include_once '../../SQL/connector.php';
$con = new connector();
$query = "SELECT
E.`pais`,
E.`estado`,
E.`cidade`,
... | PHP |
<?php
if (($_GET['id'] != null && $_GET['id'] != "") &&
($_GET['nome'] != null && $_GET['nome'] != "") &&
($_GET['cpf'] != null && $_GET['cpf'] != "") &&
($_GET['dn'] != null && $_GET['dn'] != "") &&
($_GET['identidade'] != null && $_GET['identidade'] != "") &&
($_GET['expeditor'... | PHP |
<?php
?>
<table>
<tr>
<td>Email:</td>
<td>
<input type="text" name="email" maxlength="100" ></input>
</td>
</tr>
<tr>
<td colspan="2" align="right">
<input type="button" onclick="cli_listar_email();" value="Cancelar"></input>
<input type="... | PHP |
<?php
if (($_GET['ClienteID'] != "" && $_GET['ClienteID'] != null) &&
($_GET['EnderecoID'] != null && $_GET['EnderecoID'] != "")) {
continuar($_GET['ClienteID'], $_GET['EnderecoID']);
} else {
echo "ID do endereço ou da pessoa inválida.";
}
function continuar($idPessoa, $idEndereco) {
include_once '... | PHP |
<?php
$cor_titulo = "#00cc99";
$cor_linha1 = "white";
$cor_linha2 = "#ccff66";
include_once '../../SQL/connector.php';
$con = new connector();
$query ="SELECT
p.idPessoa,
p.nome,
p.cpf,
p.data_nascimento
FROM Pessoa ... | PHP |
<?php
if( ($_GET['nome'] != "" && $_GET['nome'] != null) &&
($_GET['cpf'] != "" && $_GET['cpf'] != null) &&
($_GET['identidade'] != "" && $_GET['identidade'] != null) &&
($_GET['expeditor'] != "" && $_GET['expeditor'] != null) &&
($_GET['dia'] != "" && $_GET['dia'] != null) &&
... | PHP |
<?php
if ($_GET['id'] != null && $_GET['id'] != "") {
continuar($_GET['id']);
} else if ($_POST['id'] != null && $_POST['id'] != "") {
continuar($_POST['id']);
} else {
echo "Nenhum id foi passado!";
}
function continuar($id) {
limparTelefones($id);
limparEmails($id);
limparEnderecos($id);
... | PHP |
<?php
if (($_GET['ClienteID'] != "" && $_GET['ClienteID'] != null) && ($_GET['TelefoneID'] != null || $_GET['TelefoneID'] != "")) {
continuar($_GET['TelefoneID'], $_GET['ClienteID']);
} else {
echo "ID do telefone ou cliente inválida.";
}
function continuar($idTelefone, $idPessoa) {
include_once '../../SQ... | PHP |
<?php
if($_GET['ClienteID'] != null || $_GET['ClienteID'] != ""){
if($_GET['email'] != "" && $_GET['email'] != null){
include_once '../../SQL/connector.php';
$con = new connector();
$query ="INSERT INTO `Aruana`.`Email`
(`email`)
VALUES
... | PHP |
<?php
?>
<table>
<tr>
<td>País:</td>
<td>
<select name="pais">
<option value="África do Sul">África do Sul</option>
<option value="Albânia">Albânia</option>
<option value="Alemanha">Alemanha</option>
<option value="Andorra"... | PHP |
<?php
if (($_GET['razao'] != null && $_GET['razao'] != "") &&
($_GET['fantasia'] != null && $_GET['fantasia'] != "") &&
($_GET['cnpj'] != null && $_GET['cnpj'] != "") &&
($_GET['representante'] != null && $_GET['representante'] != "")) {
continuar($_GET['razao'], $_GET['fantasia'], $_GET['c... | PHP |
<?php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta>
<script type="text/javascript" src="Script... | PHP |
<?php
?>
<tr>
<td colspan="7" style="border-width: 0px; background-color: #ccff66;">
<h1 id="title">
Sistema de Controle Aruanã Pesca
</h1>
</td>
</tr>
<tr>
<td class="menu" id="inicio" onmouseover="javascript:darFoco('inicio')" onmouseout="javascript:retirarFoco('inicio')" oncl... | PHP |
<?php
?>
<tr>
<td colspan="7" class="rodape">
Aruanã Pesca e Turismo - contato@aruanapesca.com.br
</td>
</tr>
</table>
</body>
</html>
| PHP |
<?php
$_SESSION['BD_base'] = "Aruana";
$_SESSION['BD_telefone'] = "Telefone";
$_SESSION['BD_email'] = "Email";
$_SESSION['BD_endereco'] = "Endereco";
$_SESSION['BD_pessoa'] = "Pessoa";
$_SESSION['BD_empresa'] = "Empresa";
$_SESSION['BD_pacote'] = "Pacote";
$_SESSION['BD_contrato'] = "Con... | PHP |
<?php
include("View/head.php");
include("View/menu.php");
?>
<tr>
<td id="comeco" name="comeco" colspan="7" style="border-width: 0;">
<h1>
Bem vindo!
</h1>
</td>
</tr>
<?php include("View/botton.php");?> | PHP |
<link rel="stylesheet" href="stiil.css">
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sven");
if(isSet($_REQUEST["kommentaari_id"])){
$kask=$yhendus->prepare("UPDATE parandusfirma SET kommentaar=? WHERE id=?");
$kask->bind_param("si", $_REQUEST["kommentaar"], $_REQUEST["kommentaari_id"]);
$k... | PHP |
<link rel="stylesheet" href="stiil.css">
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sven");
if(isSet($_REQUEST["sisestusnupp"])){
$kask=$yhendus->prepare(
"INSERT INTO parandusfirma(kasnimi, seade, probleem, telnumber) VALUES (?, ?, ?, ?)");
$kask->bind_param("ssss", $_REQUEST["ka... | PHP |
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sven");
session_start();
if(isSet($_REQUEST["kasutajanimi"])){
$kask=$yhendus->prepare(
"SELECT roll FROM kasutajad WHERE knimi=? AND paroolir2si=PASSWORD(?)");
$knimiparool=$_REQUEST["kasutajanimi"]."_".$_REQUEST["parool"];
$ka... | PHP |
<link rel="stylesheet" href="stiil.css">
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sven");
if(isSet($_REQUEST["salvestusid"])){
$kask=$yhendus->prepare("UPDATE parandusfirma SET tehnik=? WHERE id=?");
$kask->bind_param("si", $_REQUEST["tehnik"], $_REQUEST["salvestusid"]);
$kask->execu... | PHP |
<link rel="stylesheet" href="stiil.css">
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sven");
if(isSet($_REQUEST["kommentaari_id"])){
$kask=$yhendus->prepare("UPDATE parandusfirma SET kommentaar=? WHERE id=?");
$kask->bind_param("si", $_REQUEST["kommentaar"], $_REQUEST["kommentaari_id"]);
... | PHP |
<link rel="stylesheet" href="stiil.css">
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sven");
if(isSet($_REQUEST["kommentaari_id"])){
$kask=$yhendus->prepare("UPDATE parandusfirma SET kommentaar=? WHERE id=?");
$kask->bind_param("si", $_REQUEST["kommentaar"], $_REQUEST["kommentaari_id"]);
$k... | PHP |
<link rel="stylesheet" href="stiil.css">
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_sven");
session_start();
if($_SESSION["roll"]!='tehnik'){
header("Location: sisselogimine.php");
exit();
}
?>
<!doctype html>
<html>
<head>
<title>Tehnikute lehed</title>
</head>
<body>
... | PHP |
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_ivanovil");
session_start();
$kask=$yhendus->
SELECT tehnik from parandused WHERE not tehnik is NULL;
| PHP |
<link rel="stylesheet" href="kujundus.css">
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_ivanovil");
if(!empty($_REQUEST["eemaldamine_id"])){
$kask=$yhendus->prepare(
"DELETE FROM parandused WHERE id=?");
$kask->bind_param("i", $_REQUEST["eemaldamine_id"]);
$kask->execute();
}
se... | PHP |
<?php
$yhendus=new mysqli("localhost", "if13", "ifikad", "if13_ivanovil");
session_start();
if(isSet($_REQUEST["kasutajanimi"])){
$kask=$yhendus->prepare(
"SELECT roll FROM kasutajad WHERE knimi=? AND paroolir2si=PASSWORD(?)");
$knimiparool=$_REQUEST["kasutajanimi"]."_".$_REQUEST["parool"];
$kask->bind_param("ss... | PHP |
<?php
/*
* @author dreamsxin
* @date 2010-4-28
*/
?> | PHP |
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Support for image manipulation using [Imagick](http://php.net/Imagick).
*
* @package Kohana/Image
* @category Drivers
* @author Tamas Mihalik tamas.mihalik@gmail.com
* @copyright (c) 2009-2010 Kohana Team
* @license http://kohanaphp.... | PHP |
<?php
/**
* 图像处理支持 - GD
*
* @author Zhuzx
* @email dreamsxin@qq.com
* @date 2010-12-30
*/
class Image_GD extends Image {
// GD库bundled版本标识,
protected static $_checked;
/**
* 检查GD库是否开启,以及是版本
*/
public static function check()
{
if ( ! function_exists('gd_info')) {
throw new Exception('ImageGD requir... | PHP |
<?php
/**
* 图像处理 - 进行图片缩放,裁切
* @author Zhuzx
* @email dreamsxin@qq.com
* @date 2010-12-29
*/
abstract class Kohana_Image {
// 缩放模式
const NONE = 0x01; // 不按照比例
const WIDTH = 0x02; // 按照比例,以宽度为准
const HEIGHT = 0x03; // 按照比例,以高度为准
const AUTO = 0x04; // 自动选择:($this->width / $width) > ($this->heigh... | PHP |
<?php
/**********************************************************************************
* Settings.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
// This file is here solely to protect your attachments directory.
// Look for Settings.php....
if (file_exists(dirname(dirname(__FILE__)) . '/Settings.php'))
{
// Found it!
require(dirname(dirname(__FILE__)) . '/Settings.php');
header('Location: ' . $boardurl);
}
// Can't find it... just forget it.
else
ex... | PHP |
<?php
// Try to handle it with the upper level index.php. (it should know what to do.)
if (file_exists(dirname(dirname(__FILE__)) . '/index.php'))
include (dirname(dirname(__FILE__)) . '/index.php');
else
exit;
?> | PHP |
<?php
// This file is here solely to protect your Smileys directory.
// Look for Settings.php....
if (file_exists(dirname(dirname(__FILE__)) . '/Settings.php'))
{
// Found it!
require(dirname(dirname(__FILE__)) . '/Settings.php');
header('Location: ' . $boardurl);
}
// Can't find it... just forget it.
else
exit;
... | PHP |
<?php
// Try to handle it with the upper level index.php. (it should know what to do.)
if (file_exists(dirname(dirname(__FILE__)) . '/index.php'))
include (dirname(dirname(__FILE__)) . '/index.php');
else
exit;
?> | PHP |
<?php
// Try to handle it with the upper level index.php. (it should know what to do.)
if (file_exists(dirname(dirname(__FILE__)) . '/index.php'))
include (dirname(dirname(__FILE__)) . '/index.php');
else
exit;
?> | PHP |
<?php
// Try to handle it with the upper level index.php. (it should know what to do.)
if (file_exists(dirname(dirname(__FILE__)) . '/index.php'))
include (dirname(dirname(__FILE__)) . '/index.php');
else
exit;
?> | PHP |
<?php
/**********************************************************************************
* index.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Settings.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http... | PHP |
<?php
/**
* @file index.php
* Supress direct acceess to the directory.
*
* @author PortaMx - Portal Management Extension
* @author Copyright 2008-2011 by PortaMx - http://portamx.com
* @Version: 1.0 RC4
* @Date: 23.02.2011
*/
if(file_exists(realpath('../Settings.php')))
{
require(realpath('../Settings.php'));
header... | PHP |
<?php
header('Content-type: text/html; charset=utf-8');
// The following variables values must reflect your installation needs.
$aspell_prog = '"C:\Program Files\Aspell\bin\aspell.exe"'; // by FredCK (for Windows)
//$aspell_prog = 'aspell'; // by FredCK (for Linux)
$lang = 'en_US';
$aspell_opts =... | PHP |
<?php
if ( !isset( $_SERVER ) ) {
$_SERVER = $HTTP_SERVER_VARS ;
}
if ( !isset( $_GET ) ) {
$_GET = $HTTP_GET_VARS ;
}
if ( !isset( $_FILES ) ) {
$_FILES = $HTTP_POST_FILES ;
}
if ( !defined( 'DIRECTORY_SEPARATOR' ) ) {
define( 'DIRECTORY_SEPARATOR',
strtoupper(substr(PHP_OS, 0, ... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
... | PHP |
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http... | PHP |
<?php
/**********************************************************************************
* ManageSearchEngines.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Subs-MessageIndex.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Who.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Post.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Profile-Modify.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Subs-Members.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Load.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Calendar.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* ManageBoards.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Class-Package.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Subs-Admin.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* PackageGet.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* LogInOut.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* PersonalMessage.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* DbSearch-sqlite.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* MessageIndex.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Reports.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Search.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Subs-BoardIndex.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* DumpDatabase.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Subs.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Subs-Charset.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Subs-Db-sqlite.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* ManageSmileys.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
<?php
/**********************************************************************************
* Subs-Boards.php *
***********************************************************************************
* SMF: Simple Machines Forum ... | PHP |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.