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
DROP TABLE currency; | |
-- Create table variable | |
CREATE TABLE currency ( | |
country VARCHAR(100), | |
currency VARCHAR(100), | |
code VARCHAR(100), | |
symbol VARCHAR(100) | |
); |
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
window.onload = function(){ | |
function Youtube(urlYoutube) | |
{ | |
var urlClear = urlYoutube; | |
if(urlYoutube.lastIndexOf("?v=") != -1) | |
{ | |
urlClear = urlYoutube.substring(urlYoutube.lastIndexOf("?v=") + 3); | |
if(urlClear.indexOf("&") != -1); | |
urlClear = urlClear.substring(0, urlClear.indexOf("&")); | |
} |