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
Hello thanks for share u code, it's great, but i have a question where is the compatibility list? |
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 | |
/* | |
void graph() | |
@params | |
String title |
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 | |
function get_extension ($file_name = "simple._práctico_.inc.txt"){ | |
try{ | |
if(!preg_match("/^([a-zA-Z0-9àèìòùáéíóúäëïöüÀÈÌÒÙÁÉÍÓÚÄËÏÖÜ\s\._-]+)$/i", $file_name)) | |
return false; |
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 Mail is a simple code for sending customized emails easy | |
@ params | |
$sender_name = String name of sender mail |
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
//Licencia GPL v3 | |
function require( src_file , where){ | |
if(! where ) | |
var where = ""; | |
switch(where){ |
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
/* | |
Copyrights @gomosoft 2013 | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
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 | |
function readTags($file) { | |
$fp = fopen($file, "r"); | |
$start = fread($fp, 3); | |
$size = filesize($file); | |
fseek($fp, $size-128); | |
$end = fread($fp, 128); | |
if (strpos($start, "ID3") === 0) { |
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
/* | |
USO | |
var opts = { | |
bar_text : "#progress", // elemento donde se colocará el porcentaje de carga | |
load_bar : "#upload_bar", // la barra de progreso (la que va aumentando) ______ ... | |
allowed_files_ext : new Array("mp3", "ogg"), //extensiones permitidas (siempre debes validar del lado servidor) | |
upload_url : "/upload", // archivo a donde se carga (uploads.php) |
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
$("#captura_").off("submit").on( "submit" , function send(e){ | |
if(running) | |
return false; | |
e.preventDefault(); | |
e.stopPropagation(); | |
$("#error").hide().text(""); |
OlderNewer