• 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 mgz

  1. M

    Overclocking E8400 help needed

    Put your vcore at 1.35 then try to boot with 3.6 and run prime95 for a bit to see if you get errors, if you dont get errors then lower the volts and run it again until you reach the point of low volts / no errors.
  2. M

    Tight budget *$120* mobo/ram/cpu for gaming. Is it possible?

    I would honestly say that budget will not get you anything worth spending money on. For a new CPU / Video card / RAM you are going to need atleast a $300 budget, and that will be pushing it.
  3. M

    Vista Optimization Tools

    TuneUp Utilities 2007
  4. M

    Java Upload Class

    Anyone have any suggestions on a good Java or similar upload class/object that will allow large uploads through HTTP/FTP on a web interface. I would like to be able to integrate this into a PHP page for backend work.
  5. M

    PHP Pagination/Paging

    Here is the script I use. This should get you on the right track. Simply called by a function: The working example is on http://www.juicedgaming.net Put this in a functions page(or somewhere in the top of the page). // Variables for the page script $page = $_GET['page']...
  6. M

    PHP Forms - Nested Drop downs?

    Here is a quick snippet from a website I did. Hopefully this helps. <?php echo ' <form method="POST" name="addFrm"> <tr> <td align="right">Select the match division</td> <td align="left"> <select name="division" onChange="putDivUrl(this.value);"> <option...
  7. M

    Javascript funtion onload

    This for(i=0; i < 17; i++) { BackTable.rows[0].cells[0].innerHTML="<param type='text' name='"+BackDims[i][0]+"' value='"+BackDims[i][2]+"'/>"; } Needs to be: for(i=0; i < 17; i++) { BackTable.rows[0].cells[0].innerHTML+="<param type='text' name='"+BackDims[i][0]+"'...
  8. M

    Urgent Photoshop Issue

    Did you start this project in CS3?
  9. M

    JavaScript Validation Method... It seemed so simple.

    Can you show us the code for the dropdowns you have as well?
  10. M

    Hosting website from my own pc

    use a free Dynamic DNS host and download WAMP or XAMPP or something simliar to install apache,php,sql, etc
  11. M

    Javascript DropDowns

    There is no reason to use jquery, you can do this completely client side by using an array with javascript. I will post an example here tomorrow for you as I have to sleep now :)
  12. M

    JavaScript Validation Method... It seemed so simple.

    I may be wrong but I believe that for (n=0;n<= <%request.form("NumberOfEvents")%>;n++){ needs to be for (n=0;n<= <%response.write(request.form("NumberOfEvents"))%>;n++){
  13. M

    Using vbScript w/ LotusScript

    I currently have a script integrated into an ASP page which will generate and send emails via VBScript in my ASP page. It works fine the only thing I seem to be having trouble finding any good information on is the richtextobject. I am looking for a way to be able to format my text(bold...
  14. M

    Javascript Regular Expressions

    Try something like: <?PHP str_replace($compare_to,$replace_with,$searchstr); ?>
Back
Top