Search results

  1. federico_casares

    JavaScript problem

    You should define your function in a separate .js file (the neat way), call it in the head section using <script src='path to js file' type='text/javascript'></script> and then doing onkeypress="myFunction()". Remember that you can pass events to function. Check this page out, it's really...
  2. federico_casares

    Need a Suggestion

    If the 3 different kind of users have different fields and a user can't be in more than one category, then you should create 3 diff PHP pages and 3 diff mySQL tables. One PHP page with its script inserts data in one table, other PHP page in other table, and so on... So I believe the approach of...
  3. federico_casares

    Need a Suggestion

    Thanks for the donation! =) If you need any more help, just ask me! =)
  4. federico_casares

    Need a Suggestion

    Usually the better approach to validation is to validate the data client-side using Javascript (for a quicker and more practical UI) and then make the same validations server-side through PHP. This way you can bring the user a nice and fast experience and you keep your server and data secure...
  5. federico_casares

    Configuración de PHP

    Bueno, sigo insistiendo en que no estoy de acuerdo, pero no hay alternativa... Me encargaré de deshabilitar el display_errors en cada uno de mis scripts mediante ini_set. Gracias!
  6. federico_casares

    Configuración de PHP

    Es una muy mala práctica a nivel seguridad tener el error reporting activo... Da información (aunque sea muy poca) sobre el código fuente. Además, queda desprolijo. En un servidor de producción nunca se tiene activo... =)
  7. federico_casares

    Configuración de PHP

    Cualquier error que surja dentro de mis scripts PHP es enviado al navegador con la configuración actual. Lo cual es un problema de seguridad terrible. Supongamos que en algún momento deja de funcionar el servidor SQL u ocurre algún otro error dentro de mis scripts, me gustaría que al usuario no...
  8. federico_casares

    Configuración de PHP

    Hola! Quería saber si existe la posibilidad de hacer algunos cambios sobre la configuración de PHP de mi cuenta. El asunto que más me preocupa es el error reporting, que está encendido, mostrando todas las notices y warnings en el navegador... Se puede deshabilitar desde algún lugar? Gracias...
  9. federico_casares

    Caching Questions

    You could use a file cache (storing each result in a new file) and send it to the browser when the parameters match. You can use the combination of all the factors as the file name and before performing any calculation you can check if the file exists already... If it exists, then it sends it...
  10. federico_casares

    10 Credits Just for Reading

    Thanks for the credits! And for the story, too! =)
  11. federico_casares

    10 Credits Just for Reading

    Hi there! I posted a comment in: http://www.cvandermeer.x10hosting.com/Escape!.php Cheers!
  12. federico_casares

    SQL newbie here. How do i create a connection from php?

    Anyway, it's always a good idea to use PDO instead of native mysql functions. It's faster and more secure. It's also easier to change databases in the future... Just my 0.02 www.php.net/pdo It looks a bit tricky at first, but once you start to learn how to work with it, you'll love it. And...
  13. federico_casares

    No puedo registrarme desde Argentina

    Hola, qué tal? He intentado registrarme para obtener una cuenta Ad-Free y obtuve un mensaje de que las registraciones desde mi país no están permitidas. Será posible que me creen la cuenta ustedes? Es para hostear un sitio web sobre recetas de cocina (en español). Saludos!
Top