Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Are you sure that is the relevant code? It doesn't look like it belongs in the file described in the error message. As for your error. Your running out of memory. Usually from doing some pretty intensive task.
  2. PHP is cross platform. Most hosting is Linux. It's not something I would recommend (I wouldn't recommend Windows for anything though) but a lot of people still develop locally on Windows.
  3. What makes you think that?
  4. Hell, in 5.4 php has a web server built in. No need for Apache or Nginx anymore for development.
  5. Replace: <td><a href='$row[$RestPage]$RestID=RestID'>$row[RestName]</a></td> with: <td><a href='{$row['RestPage']}?RestID={$RestID}'>{$row['RestName']}</a></td>
  6. We need to see more code so that we can see how exactly this is being used. Variables are not interpolated within single quotes, is that your issue?
  7. No, you use one of the mysql extensions to access mysql. Fortunately though, php as many database extensions that you can use to access all sorts of different databases.
  8. You can break them down however you like. There really isn't any standard way of doing things until you start using actual frameworks.
  9. If you want the data out of the database you can access it via php. If you* (the developer) can't get to the data, how do you expect your client* to get a spreadsheet?
  10. That isn't a feature of MySql, it's just that people have developed these interfaces to it. Access has it's own interface if you have some version of office installed. Have you googled though? There are asp based web interfaces available for these things. Hell you might even find a php one.
  11. It should answer all of your questions.
  12. Or, you could look at the manual. http://php.net/bool
  13. Your missing the entire point of dynamic web applications. Do you think this forum creates a new php page every time someone adds a new post?
  14. The forums and the main site are not separate, one is just a custom site that needs some love, the other is some forum software that again, needs some love. Now, if only we had a lot of time on our hands.
  15. We can't help you.
  16. Where exactly are you stuck? This should be a pretty simple task for any PHP developer.
  17. I'm interested in the idea. Hell, I created the account. It's just a matter of content and time, but I'm on Twitter all day everyday so...
  18. And you have done what to debug your code?
  19. https://twitter.com/thephpfreaks As you can see, it is currently very well maintained.
  20. Where exactly are you stuck?
  21. Events execute on the browser, while PHP executes on the server.
  22. Your still not making a lot of sense. You should never need to dynamically change your data scheme. If that is indeed what you are trying to do you are doing it wrong.
  23. Your asking your question on a PHP help forum.
  24. Sounds like you (or your client) need to hire a programmer.
  25. Sorry, but you will need to be a lot clearer in the explanation of your problem.
×
×
  • 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.