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 | |
// source: http://stackoverflow.com/questions/779986/insert-multiple-rows-via-a-php-array-into-mysql | |
$sql = array(); | |
foreach( $data as $row ) { | |
$sql[] = '("' . mysql_real_escape_string($row['text']) . '", ' . $row['category_id'] . ')'; | |
} | |
mysql_query('INSERT INTO table (text, category) VALUES ' . implode(',', $sql)); | |
?> |
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
var element = document.getElementById('elementId'); | |
if (typeof(element) != 'undefined' && element != null) | |
{ | |
// exists. | |
} |
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
function formatBytes($size, $precision = 2) | |
{ | |
$base = log($size) / log(1024); | |
$suffixes = array('', 'k', 'M', 'G', 'T'); | |
return round(pow(1024, $base - floor($base)), $precision) . $suffixes[floor($base)]; | |
} |
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
// | |
// Created by John F. Mercer on Monday, December 5, 2011 | |
// [email protected] | |
// | |
// tested on node 0.6.4 and express 2.5.1 | |
// | |
var express = require('express'), | |
app = express.createServer(); | |
app.use(express.logger()); |
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
<!DOCTYPE HTML> | |
<!-- | |
/* | |
* Remote File Copy Demo 1.0 | |
* | |
* Copyright 2012, Sebastian Tschan | |
* https://blueimp.net | |
* | |
* Licensed under the MIT license: | |
* http://www.opensource.org/licenses/MIT |
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 | |
// Twitter Auto-follow Script by Dave Stevens - http://davestevens.co.uk | |
$user = ""; | |
$pass = ""; | |
$term = ""; | |
$userApiUrl = "http://twitter.com/statuses/friends.json"; |
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 | |
// get table names | |
$username = 'Admin'; | |
$password = 'blablabla'; | |
$db = odbc_connect("Driver={Microsoft Access Driver (*.mdb)};Dbq=c:\\xampp\htdocs\pblablabla.mdb;", $username, $password); | |
$result = odbc_tables($db); | |
echo '<div id="top">..</div><table border="1" cellpadding="5"><tr>'; |
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
' Add reference to: | |
' 1. Microsoft Scripting Runtime | |
' 2. Microsoft Shell Controls and Automation | |
' From Tools > Reference | |
Option Explicit | |
Option Base 0 | |
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMiliseconds As Long) |
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
Private Sub cmdKirimGET_Click() | |
Dim strResult As String | |
Dim objHTTP As Object | |
Dim URL As String | |
Set objHTTP = CreateObject("WinHttp.WinHttpRequest.5.1") | |
URL = "http://localhost/search.php" | |
objHTTP.Open "GET", URL, False | |
objHTTP.setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" | |
objHTTP.setRequestHeader "Content-type", "application/x-www-form-urlencoded" | |
objHTTP.send ("keyword=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
<?php | |
$database_list = array('db_test_1', 'db_test_2'); | |
echo 'Primary Key Dropper for MySQL' . "\n\n"; | |
$link = mysql_connect('localhost', 'root', ''); | |
if (!$link) { | |
echo 'Could not connect to database server: ' . mysql_error() . "\n"; | |
exit; |
OlderNewer