ob_start(); if(!empty($_GET['stock'])) { $stock = strtoupper($_GET['stock']); $verify = read_stock($stock); } function read_stock($stock) { //First check file if it exist $filename = "../../clubsite/Club2/SSD/Stocks/$stock"; //echo $filename; if (file_exists($filename)) { return 1; } else { return 0; } } ?>
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|