Hey, I've actually added to the code. Baisicly I didn't want users to need to tell me their profile URL to get the info on them. Instead I added some more code to do all that automaticly. All this needs is their first and last name. I've added a form where you can enter any player on the server and get their info, and then it shows it. this only works for my server though. You will need to change it if you want it to work for another server. just change the server name in the code


<?php
if($_POST['first'] == NULL)
{
?>

<html>
<form method="post" action="scrape2.php">
<input type="text" value="First Name" name="first" /> <input value="Last Name" type="text" name="last" /><input type="submit" value="Get Info" />
</form>
</html>

<?php
}
else
{
$first = $_POST['first'];
$last = $_POST['last'];

$url = "http://lodestone.finalfantasyxiv.com/rc/search/search?q=" . $first . "+" . $last;
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_USERAGENT, 'http://www.useragentstring.com/Firefox6.0_id_18845.php');
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Accept-Language: en-us,en;q=0.5'));
$html = curl_exec($curl);
curl_close($curl);

$value = preg_match('/href="\/rc\/character\/top\?cicuid=(\d+)">[^<]+<\/a><\/td><\/tr><\/table><\/td><td class="contents\-table1TD2" align="center">[^<]+<\/td><td class="contents\-table1TD1" align="center">Gysahl/', $html, $matches);
$val = $matches[1];


//-- This code is written by Astin Prey. Leader of Kisses and Kissed LS on Gysahl Server.
//-- If you have any questions, you can simple send me a tell, or ask in a post on the forums @ www.kissesls.net

$url = "http://lodestone.finalfantasyxiv.com/rc/character/status?cicuid=" . $val;
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_USERAGENT, 'http://www.useragentstring.com/Firefox6.0_id_18845.php');
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Accept-Language: en-us,en;q=0.5'));
$html = curl_exec($curl);
curl_close($curl);

$value = preg_match('/Sword<\/td><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$sword = $matches[1];

$value = preg_match('/Axe<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$axe = $matches[1];

$value = preg_match('/Archery<\/td><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$archery = $matches[1];

$value = preg_match('/Hand\-to\-Hand<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$hand = $matches[1];

$value = preg_match('/Polearm<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$polearm = $matches[1];

$value = preg_match('/Shield<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$shield = $matches[1];

$value = preg_match('/Conjury<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$conjury = $matches[1];

$value = preg_match('/Thaumaturgy<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$thaumaturgy = $matches[1];

$value = preg_match('/Woodworking<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$woodworking = $matches[1];

$value = preg_match('/Armorcraft<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Armorcraft = $matches[1];

$value = preg_match('/Leatherworking<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Leatherworking = $matches[1];

$value = preg_match('/Alchemy<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Alchemy = $matches[1];

$value = preg_match('/Smithing<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Smithing = $matches[1];

$value = preg_match('/Goldsmithing<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Goldsmithing = $matches[1];

$value = preg_match('/Clothcraft<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Clothcraft = $matches[1];

$value = preg_match('/Cooking<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Cooking = $matches[1];

$value = preg_match('/Mining<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Mining = $matches[1];

$value = preg_match('/Fishing<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Fishing = $matches[1];

$value = preg_match('/Botany<\/t[dh]><td[^>]+><b>(\d+)<\/b>/', $html, $matches);
$Botany = $matches[1];

echo "Sword: " . $sword;
echo "<br/>";
echo "Axe: " . $axe;
echo "<br/>";
echo "Archery: " . $archery;
echo "<br/>";
echo "Hand-to-Hand: " . $hand;
echo "<br/>";
echo "Polearm: " . $polearm;
echo "<br/>";
echo "Shield: " . $shield;
echo "<br/>";
echo "Conjury: " . $conjury;
echo "<br/>";
echo "Thaumaturgy: " . $thaumaturgy;
echo "<br/>";
echo "Woodworking: " . $woodworking;
echo "<br/>";
echo "Armorcraft: " . $Armorcraft;
echo "<br/>";
echo "Leatherworking: " . $Leatherworking;
echo "<br/>";
echo "Alchemy: " . $Alchemy;
echo "<br/>";
echo "Smithing: " . $Smithing;
echo "<br/>";
echo "Goldsmithing: " . $Goldsmithing;
echo "<br/>";
echo "Clothcraft: " . $Clothcraft;
echo "<br/>";
echo "Cooking: " . $Cooking;
echo "<br/>";
echo "Mining: " . $Mining;
echo "<br/>";
echo "Fishing: " . $Fishing;
echo "<br/>";
echo "Botany: " . $Botany;
}
?>