<?php
session_start();
$logged = $_SESSION['s_logged_n'];
$uid = $_GET['uid'];
if(!$logged){
echo 'You must be <a href="index.php">logged in</a> logged in to upload footers.';
}
else{
echo $uid;
}
?>
I have this. In my URL I use, www.website.com/file.php?uid=1
What does it echo? 0. why? No matter what number I use for uid, it’s always 0. Why? I’ve used get a million times, and never had this problem.:shifty: