• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by Zachafer

  1. Z

    c - find in array function question.

    #include <strings.h> //same thing as include string.h bool cmpIgnoreCase( const string& s1, const string& s2 ) { return strcasecmp( s1.c_str(), s2.c_str() ) <= 0; }
  2. Z

    What is wrong with my php process mail form?

    Here is the problem: $topHeader = "From: $email\n"; $topHeader . "MIME-Version: 1.0\n" . "Content-Transfer-Encoding: 7bit\n" . "Content-type: text/html; charset = \"iso-8859-1\";\n\n"; Notice $topHeader . "MIME-Version: 1.0\n" Try using: $topHeader = "From: $email\n"; $topHeader .=...
Back
Top