Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. No where will you be asked for a password by Mysql except in your code where you call mysql_connect. Your going to need to post your code as you are obviously way off track somewhere.
  2. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=336360.0
  3. Simply put a form on a page that submits to a PHP script which then adds the form data to a database.
  4. trq

    Git fail!

    I saw this yesterday too, some fucked up shit. Not sure why you would consider it a Git fail though.
  5. It's all up to you really. In my framework, I have the router create a command object. This command object is basically just a placeholder for the names of the module, controller & action foe the current request. I then pass this into my request object (it's going to need it anyway), which in turn passes it to the dispatch process.
  6. Did you even read Maq's response? There is a link in my signature "How To Ask?", read it, and come back when you are more capable of putting a post together.
  7. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=336329.0
  8. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=336331.0
  9. You might also want to take a look at incrond, it is different to normal cron in that it executes script when certain filesystem events occur (ie; a file is created within a certain directory), not like normal cron which just executes scheduled tasks.
  10. Sorry but your not making allot of sense. You'll need to explain in more detail.
  11. This topic has been moved to Application Design. http://www.phpfreaks.com/forums/index.php?topic=336311.0
  12. How exactly do you plan on identifying members without them logging in?
  13. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=336300.0
  14. Yes and yes. the question really should be, why wouldn't you use a framework?
  15. This.... if("$transfertype='sale'") will *always* evaluate to true. Why? Because are are simply using a string as your expression. You don't need (and they indeed make no sense) the double quotes. As for your issue. What have you done to debug your code? Have you looked to see what mysql_error might produce? Your update query is all over the place. column identifiers do not belong in quotes, but strings do.
  16. We need more descriptive details 'do not work' does not cut it.
  17. You can easily trigger php scripts from a batch file. Take a look at the clin section of the manual cli.
  18. You would to download them separately.
  19. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=336223.0
  20. Java and JavaScript are two completely different beats, but neither of them are related to PHP. Why would you post this in the PHP Help forum?
  21. PHP's probably not the ideal solution for this type of thing but you'll want to take a look at readline.
  22. This topic has been moved to Other Libraries and Frameworks. http://www.phpfreaks.com/forums/index.php?topic=336133.0
  23. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=336182.0
×
×
  • 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.