Hey there everyone,
I’m currently going through school, and I’m having a bit of an issue with trying to figure out why my radio buttons are not working properly. I can’t get any of the information to pull up at all, and I’m not getting any error messages.
Any infos you could help me out with would be greatly appreciated!
[php]<?php
session_start();
$user = $_SESSION[‘user’];
if(!isset($user)){
header(“Location:login.php”);
}
?>
Sort By:
Last Name
Distance
First Name: | Last Name: | Email: | Distance: |
---|---|---|---|
Sorry, there are currently no runners! | |||
'.$row['fname'].' | '; echo ''.$row['lname'].' | '; echo ''.$row['email'].' | '; echo ''.$row['distance'].' |
Test Site
[/php]