Detected 1 occurrence(s) of ‘mysql_[p]*connect\(["']{0,1}[a-z0-9\-\.\$]+["']{0,1}\s*,’: *********"; // the username specified when setting-up the database $password = "*********"; // the password specified when setting-up the database $database = "*********"; // the database name chosen when setting-up the database (unique) $con = mysql_connect($hostname,$username,$password); mysql_select_db($database) or die("Unable to select database"); if($_GET["numTweets"] != null && $_GET["tag"] != null) { […]
↧