smarty_pockets Posted September 28, 2006 Share Posted September 28, 2006 I'm new to PHP (but not new to programming), so I'm pretty sure I'm missing something really trivial in the code below. When I try to run it, I get a parse error on the first line inside the function.Any help would be hugely appreciated.Thanks!![code]function distancer($lat1,$lon1,$lat2,$lon2,$unit){ $theta = $lon1 - $lon2; $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta)); $dist = acos($dist); $dist = rad2deg($dist); $miles = $dist * 60 * 1.1515; switch (strtoupper($unit)) { case 'K': $ret = $miles * 1.609344; break; case 'N': $ret = $miles * 0.8684; break; default: $ret = $miles; } return $ret;}[/code] Link to comment https://forums.phpfreaks.com/topic/22422-parse-error/ Share on other sites More sharing options...
kenrbnsn Posted September 28, 2006 Share Posted September 28, 2006 I copied you code to my machine. There are no errors in this piece of code. Is there code before this. Sometimes the PHP parser will get confused and it won't issue an error message when the error happens, but later in the code when it realizes that it's confused.Ken Link to comment https://forums.phpfreaks.com/topic/22422-parse-error/#findComment-100498 Share on other sites More sharing options...
smarty_pockets Posted September 28, 2006 Author Share Posted September 28, 2006 I tried that too. I copied just this portion of code and made a new php file, and still got the error below:Parse error: parse error, unexpected T_VARIABLE in /mnt/w0701/d01/s49/b0286312/www/redhutdesigns.com/Projects/TrackThisNote/test.php on line 5 Link to comment https://forums.phpfreaks.com/topic/22422-parse-error/#findComment-100501 Share on other sites More sharing options...
kenrbnsn Posted September 28, 2006 Share Posted September 28, 2006 It sounds like you may have an unprintable character in your code somewhere. Try retyping the line where the error occurs.Ken Link to comment https://forums.phpfreaks.com/topic/22422-parse-error/#findComment-100504 Share on other sites More sharing options...
smarty_pockets Posted September 28, 2006 Author Share Posted September 28, 2006 WOW!!! That worked!Damn you copy paste!Thanks a LOTT kenrbnsn! I really appreciate the help. :) Link to comment https://forums.phpfreaks.com/topic/22422-parse-error/#findComment-100527 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.