NO LONGER ACCEPTING WORK!!! Please do not message/email him! Thank you!
My husband is looking for some work, so I thought I post his info here! Tell him that you spotted Wolfie's ad from VPL!
I have 16 years of computer tech support, hardware, software, remote troubleshooting and repairing experience.
I can work on your MyBB, phpBB, vBulletin forums (I am well-versed in the hooks they use, and if I am unsure, I find out), WordPress installations as well as custom building PHP/MySQL websites (back-end, front-end, custom uploading/photo sorting, image resizing and watermarking, etc).
Price is dependent on job. I won't screw you around on costs and I do NOT outsource. All the code is written by me (and I back up any current installations you have to make sure everything works smoothly).
I am in the U.S. but I can work around your time schedule .
Rates are flexible and regular clients get discounts.
I can also do vulnerability scanning and hack testing.
Private test server available!!!
Joomla!, WordPress, Drupal, custom CMS modifications, PSD->HTML exchanges, existing site implementations, Android and iOS apps.
If you would like examples of code or works, please email/message:
No longer available.
Code Example:
PHP Code:
error_reporting(0);
function CheckBackLink($source) {
$url = "http://www.customerssite.tld";
$html = file_get_contents($source);
$links = ExtractHrefLinks($html);
if (CheckForTargetUrl($links, $url) === false) {
return false;
} else {
return true;
}
}
function CheckForTargetUrl($links, $target) {
foreach ($links as $link) {
if (strpos($link, $target) !== false) {
return true;
}
}
return false;
}
function ExtractHrefLinks($html) {
$dom = new DOMDocument;
$linkUrls = array();
@$dom->loadHTML($html);
$links = $dom->getElementsByTagName('a');
foreach ($links as $link){
$linkUrls[] = $link->getAttribute('href');
}
return $linkUrls;
}
function checklinks($remote_url, $your_link) {
$match_pattern = preg_quote(rtrim($your_link, "/"), "/");
$found = false;
if ($handle = @fopen($remote_url, "r")) {
while (!feof($handle)) {
$part = fread($handle, 1024);
if (preg_match("/<a(.*)href=[\"']".$match_pattern.
"(\/?)[\"'](.*)>(.*)<\/a>/", $part)) {
$found = true;
break;
}
}
fclose($handle);
}
return $found;
}
Bookmarks