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

  1. J

    PHP & MySQL - Using various rows and tables to acheive some site stats.

    I was over analyzing what I needed to do. I totally didn't think of doing a join. Thanks to you both!
  2. J

    PHP & MySQL - Using various rows and tables to acheive some site stats.

    I'm having a huge problem coming up with a solution to my problem. Have seen here that you guys give good answers that have helped me in the past. I've got two tables. In Table A, I need to get a list of ids that meet the query criteria. I'm using a Select query to do this. This part works. I...
  3. J

    PHP Extensions

    Ok, so I'm trying to use this shopping cart and they are requiring certain extensions to be running on the server. I've turned on all the ones I saw in the php.ini file that is attached to our hosting, but there are three I am still missing and I'm trying to find out the following: 1. Where...
  4. J

    Free Alpha Geek T-shirt

    Good find, OP. :) Always can use free shirts.
  5. J

    PHP debugging issue

    Silent Error..figures. Someone suggested I try it to. Remind me to go and beat them with a stick, k? And, I changed it to what you suggest. No info is being sent to the db, as well as, no echo string to show what its passing. $query = "INSERT INTO cart (cookieId, prod_name, qty...
  6. J

    PHP debugging issue

    It wasn't printing anything out. I was probably doing that string wrong, but it would just load the cart, no errors. Even the or die wouldn't kick anything out. It just didn't insert anything into the db. Changed them all to variables and still nothing, not printing anything out. Never dealt...
  7. J

    PHP debugging issue

    Thanks you guys for that help. With your suggestions, I managed to find the problem and get it worked out. I have come up now iwth an issue on it not inserting records into the database. Here's the code, if you're still willing to help. :): // Check if this item already exists in the users...
  8. J

    PHP debugging issue

    The query: $result = mysql_query("select count(*) from cart where cookieId = '" . GetCartId() . "', prod_name = $prod_name, item_desc = $item_desc'") or die(mysql_error()); $row = mysql_fetch_row($result); $numRows = $row[0]; The variable string: $qty = $_REQUEST['qty']...
  9. J

    PHP debugging issue

    Here's what I get when I echo the string..
  10. J

    PHP debugging issue

    That's how it was originally and it still kicks back the same code. only in the error code its prod_name=City sport 50 item_desc..." I was thinking it might be the way I'm trying to set up the variable for item_desc. $qty = $_REQUEST['qty']; $first_color = $_REQUEST['first_color']...
  11. J

    24 Hours to AOC Beta....

    Its technically considered open if you are a FilePlanet Subscriber and one of the 50,000 to get a beta key.
  12. J

    Free Star Wars e-book and audio book download until 5/13

    Looks awesome and interesting. Thanks!
  13. J

    PHP debugging issue

    Ok, I've been staring at this long enough and I've searched and can't figure out where my problem is. This is the error code I am getting: And here is the code it is referencing to. I know this because of how it loads differently when I take the "or die" out of the code. // Check if...
  14. J

    PHP Question regarding a shopping cart.

    Thats an idea to look into. Will have to keep that in mind for later when I get the cart done. Still wondering those if all the db connections and such to keep a cart updated, tho, is the way to go or not.
  15. J

    PHP Question regarding a shopping cart.

    Hey you guys. I am currently working on a php shopping cart that will in the end link up to Google Checkout's API when the customer goes to check out. I want to be able to let customers select and buy multiple product with different options, and have those options transmit to Google so that we...
Back
Top