Jump to content

Small Script Error


Th3Boss

Recommended Posts

I get this from the script below

Parse error: syntax error, unexpected T_VARIABLE in /home/[...]/priceupdate_cronjob.php on line 18

 

line 18 is

$change=mysql_query("UPDATE invtypes SET basePrice='$price' WHERE typeID='"$row['typeID']"';");

 

<?php
include_once("connect.php");

//Set tax, default is 5%.
$tax=0.05;

//This will spam the site to get prices.
$updateprices=$_REQUEST['updateprices'];
if($updateprices){
$query=mysql_query("SELECT * FROM invtypes WHERE published=1;");
while($row=mysql_fetch_array($query)){
$getfile="http://eve-marketdata.com/api/item_price.xml?type_id=".$row['typeID'];
$file=file_get_contents($getfile);
$xml=new SimpleXMLElement($file);
$price=$xml->price;
$pricechange=($price * $tax);
$price=($price+$pricechange);
$change=mysql_query("UPDATE invtypes SET basePrice='$price' WHERE typeID='"$row['typeID']"';");
}
}


?>

 

Anyone able to see whats wrong?

 

Thanks

 

KP: Removed url

Link to comment
https://forums.phpfreaks.com/topic/243338-small-script-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.