$_GET not working?

I don’t understand why the $_GET[“source0”] isn’t picking up:

type=forforum&no=0&source0=tr&btitle0=Matthew&checkresult0=1

$source=isset($_GET["source".$no]) ? $_GET["source".$no] : "";
$sourceAbb=Array("kjv", "mt", "mtnv", "tr");
$SourceName=Array("King James", "Masoretic Text", "Masoretic No Vowels", "Textus Receptus");
$SourceTable=Array($dbTable3, $dbTable7, $dbTable9, $dbTable8);
echo ">>>".$source."<<<";//shows empty

edit:
silly me I forgot to define the $no

Good to see you figured it out. It’s always nice when you can find your own bugs! :slight_smile: