Search results

  1. M

    How to integrate an image /text uploader to my site for visitors ?

    So you want us to do your job, free of charge? You're not asking for help, you're asking for work. If you have specific questions, phrase them well and we'll answer them. Otherwise, your best bet is to search the web for existing packages to do what you want, or post over in the marketplace.
  2. M

    teach me how to start my site design

    You ask far too much. If you have specific questions, we can answer those. Otherwise, find some good books, lectures or courses, which you can do with judicious web searches.
  3. M

    Bug in Image Upload to dir and database insert

    The MySQL error message tells you where the problem is. Notice the commas with no intervening values. There is no 'title' key in the elements of $_FILES. There is a 'name'. Since it comes from user input, you most assuredly need to worry about injection. You also need to consider what to do when...
  4. M

    mySQL help

    @entityx47: tommieonos84 is asking about how to use PHP with MySQL (in particular, how to fetch multiple rows), not how to use mysql. Free host users don't have shell access, in any case. Still, that's potentially a useful cheat-sheet. You can find another MySQL cheat sheet at Wikibooks...
  5. M

    Wordpress + Semantic Mediawiki = Account Suspended

    The X10 Wiki page on high resource usage suspensions has some relevant information. In particular, WordPress is a known CPU hog. Even with very little traffic, resource usage can be high. I've heard by word of mouth that WordPress 3 isn't as bad, but haven't seen any hard numbers, nor talked...
  6. M

    Help on binding mouseover with jquery.

    And shortened development time is nothing to sneeze at. For professional developers, it's about as important as execution time (not that this means one is picked over the other when there's a conflict, just that a significant amount of attention is paid to shortening development time). Using a...
  7. M

    Frontpage Extensions help

    Frontpage extensions on X10 have been covered before. Next time, search first.
  8. M

    unsuspension

    Take a closer look at the suspension message: you can unsuspend yourself from an inactivity suspension by logging in to the X10 account panel.
  9. M

    PHP, subdomain redirect, iFrame/Include help?

    Your code shows you've got the reason why Apache's host authentication isn't working: because of the load balancing setup X10 uses, the remote address accessible to Apache (in REMOTE_ADDR &c.) is for the reverse proxy rather than for the visitor. Somewhere the REMOTE_ADDR gets updated by the...
  10. M

    Database, MySQLl, PHP, site template, blog = Oh GOD!

    There's readfile to output a file without any additional processing (except for any stream wrappers or filters you explicitly set up). For PHP scripts, there's include/include_once/require/require_once to process the files as PHP. For other scripted pages, there's virtual, which performs an...
  11. M

    Java Scripts

    I see only one Javascript script, and no Java at all. Tables used for layout, presentational HTML, inline CSS, massive numbers of elements used non-structurally. No thanks.
  12. M

    How to choose your database

    You could, but queries to each would have to be separate. You couldn't, for example, join a table stored under MySQL to a table stored under PostgreSQL. Do you have a use-case in mind?
  13. M

    PHP variable variables array problem

    Encoding them (whatever the scheme) is one option. However, an ampersand ('&') is one of the special characters, so you won't be able to use HTML entities. Under PHP 5.2, you can enclose the value in double quotes (which you would need to do anyway if the string had any non-alphanumeric...
  14. M

    PHP variable variables array problem

    Rather than using a custom format, why not use something PHP already supports, such as ini,csv or a native PHP format, such as an array (whether stored as a PHP script or serialized)?
  15. M

    HELP PLEASE: want to have a random quote display

    As it turns out, what vv.bbcc19 posted isn't PHP code, though it is marked as such (which shows the importance of using the appropriate tags). It's Javascript.
  16. M

    scripts

    Try reading the forum rules (which is only the second of two sticky threads in this subforum). If you want to sell something, look to the site promotion forums.
  17. M

    Cron job not working!! help!!!

    Note the date on the earlier posts. It's been a year, so I doubt Waldo is still reading this thread. Just let it die.
  18. M

    mySQL help

    Don't use the mysql extension. It's outdated and has been supplanted twice over, most recently by PDO, which is easier to use and more featureful (it supports prepared statements, for one thing). If you need a tutorial, try "Writing MySQL Scripts with PHP and PDO". When asking for help with...
  19. M

    Cron job not working!! help!!!

    Don't revive dead threads. Don't pollute threads with contentless posts. If you wish to thank someone in these forums, use the "Like" link, or give them reputation.
Top