Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. There's a whole thread devoted to this question. There are a bunch of free ones out there, Netbeans is a good one.
  2. ini_set ("display_errors", "1"); error_reporting(E_ALL);
  3. Add: else { $height = 80; $width = 80; }
  4. Of course it's not working. It's because you have: if ($height > $width) AND else if ($width > $height) So what about =? You need to have a condition for this.
  5. Sure, but we need to see your code...
  6. Never knew about this, thanks for the link.
  7. Maq

    Two mysql

    Sure you have to update the user table and maybe some others. You might have better luck asking on the phpbb forums. There should be someone who could direct in you the right path for inserting users in the necessary tables.
  8. Can you put this at the top of your script to make sure you're not receiving errors first: ini_set ("display_errors", "1"); error_reporting(E_ALL);
  9. You forgot one thing.... mark as solved
  10. Oh I see, use these instead: $db['dropdown2'] = $db $table['radio2'] = $table $id['id'] = $id
  11. Code would be helpful...
  12. Well you're doing it correctly. I don't see any syntax errors, could you show me where these values are generated {$db['dropdown2']} {$table['radio2']} {$id['id']}
  13. Did you just modify it to say 2 instead of 3? I could have sworn you had the wrong names in the POST fields...
  14. Uh, where is $page_id being set?
  15. double post in the same section, nice! you could have at least tried another section... Hmm, that looks correct, you sure there's something in press_material? Change this line: $result = mysql_query($sql) or die(mysql_error());
  16. 1) Please use code tags (the # sign icon). 2) Have you tried debugging the situation? Echo out your variables in the query. 3) Could you give us the piece of code causing the issue so we don't have to read plain text. It's probably your sql query.
  17. No worries
  18. Change this line: $result = mysql_query($sql,$connection) or die(mysql_error());
  19. What exactly to you mean? What happens, are there errors?
  20. If you have access to SSH type in, "php -i | grep php.ini".
  21. You do, or should, if not then no one would have them on their site.
  22. You may be better off posting in a different section because this is really nothing to do with PHP anymore.
  23. Yeah zend is a good one. I guess it would depend what you're working with to. For example os-commerce, wordpress, etc. I think have their standards but then again they have to use the php functions so idk where I'm going with this....
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.