--- a/feedback.php +++ b/feedback.php @@ -1,54 +1,68 @@ verifyEmailAddress($address); -//$con->listVerifiedEmailAddresses(); +include ("include/common.inc.php"); + $GTFSREnabled = false; +include_header("Feedback", "feedback"); +function sendEmail($topic, $message) +{ + $address = "maxious@lambdacomplex.org"; + // In case any of our lines are larger than 70 characters, we should use wordwrap() + $message = wordwrap($message, 70); + // Send + mail($address, $topic, $message); -$m = new SimpleEmailServiceMessage(); -$m->addTo($address); -$m->setFrom($address); -$m->setSubject($topic); -$m->setMessageFromString($message); -$con->sendEmail($m); +} +if (isset($_REQUEST['feedback']) || isset($_REQUEST['newlocation'])){ + sendEmail("bus.lambda feedback",print_r($_REQUEST,true)); + echo "

Thank you for your feedback!

"; } else { -// In case any of our lines are larger than 70 characters, we should use wordwrap() -$message = wordwrap($message, 70); - -// Send -mail($address, $topic, $message); +$stopid = ""; +$stopcode = ""; +if (isset($_SERVER["HTTP_REFERER"])) $urlparts = explode("?",$_SERVER["HTTP_REFERER"]); +if (isset($urlparts[1])) { + $getparams = explode("&",$urlparts[1]); + foreach ($getparams as $param) { + $paramparts=explode("=",$param); + if ($paramparts[0] == "stopid") $stopid = $paramparts[1]; + if ($paramparts[0] == "stopcode") $stopcode = $paramparts[1]; + } } -} - ?>

Add/Move/Delete a Bus Stop Location

-StopID: -or StopCode: - if you click on feedback from a stop page, these will get filled in automatically. else describe the location/street of the stop +
+StopID:
+or StopCode:
+ if you click on feedback from a stop page, these will get filled in automatically. else describe the location/street of the stop in one of these boxes
-Suggested Stop Location (lat/long or words): - if your device supports javascript, you can pick a location from the map above +Suggested Stop Location (lat/long or words):
+ -Submit! - + +

Bug Report/Feedback

Please leave feedback about bugs/errors or general suggestions about improvements that could be made to the way the data is presented! - - -Submit! + + + + +