Skip to content

Instantly share code, notes, and snippets.

View osrecio's full-sized avatar

Oscar Recio osrecio

View GitHub Profile
@osrecio
osrecio / PHP: Rename WordPress prefix
Last active December 14, 2015 01:28
Rename Wordpress Database Prefix
<?php
function changePrefixWP ($old_pref,$new_pref,$server,$user,$pass,$bd) {
//Connect with DB
$link = mysql_connect($server, $user, $pass);
if (!$link) {
die('Error: ' . mysql_error());
}
//Get the table resource
$result = mysql_list_tables($bd);