Search results

  1. G

    Copying files without a ftp cliant

    I have been able to copy images fro m one web page to another by reading the image files. I do not remember how I did that though.
  2. G

    Copying files without a ftp cliant

    At one time I had something that copied a bunch of pictures from a web page to the one I uploaded the code to. I'm sure I still have it somewhere but I do not remember where.
  3. G

    Copying files without a ftp cliant

    I've copied them from one web page to another. I can't copy them from one web page to my computer?
  4. G

    Copying files without a ftp cliant

    How can I write a php file to download an entire folder onto my computer from my website?
  5. G

    How to keep it lined up

    I'm creating a web site where the top nav bar will wrap if the screen is smaller than needed. How do I prevent that? The site is pimpmykayak.com if needed.
  6. G

    How do I read a MySQL data with a null field?

    So how do I get it to read them?
  7. G

    How do I read a MySQL data with a null field?

    I have $pageSource = mysql_query("SELECT * FROM pmkArticles WHERE category = '$directory1'"); I have a field where category is empty and if $directory1 is empty it does not read that field. Why?
  8. G

    How do I save code in a database and have it spit it back out without changing it?

    Yes, it worked. It fixed my problem.
  9. G

    How do I save code in a database and have it spit it back out without changing it?

    Yes, it does. I got it. echo htmlspecialchars($srt) worked.
  10. G

    How do I save code in a database and have it spit it back out without changing it?

    I think have have narrowed down the problem. When I edit it, I have the description in a text area and when I have something like &reg it shows up as ® so when I save my edit, it changes things like this.
  11. G

    How do I save code in a database and have it spit it back out without changing it?

    Now I have discovered that if I only have a few of these on a page they are fine but when I start having several some start messing up. What could be causing this?
  12. G

    How do I save code in a database and have it spit it back out without changing it?

    Using phpmyadmin. I'm using php to extract it before echoing it into the web page.
  13. G

    How do I save code in a database and have it spit it back out without changing it?

    I copied the code and pasted it straight into the database and it did the same thing so that is what is has to be doing.
  14. G

    How do I save code in a database and have it spit it back out without changing it?

    Looks like the problem is with the ampersand. It is saving it in the database as just & but somehow it is echoing it out as &
  15. G

    How do I save code in a database and have it spit it back out without changing it?

    This is what I copy: <iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0"...
  16. G

    How do I save code in a database and have it spit it back out without changing it?

    I am copying code from a site that generates it for me to use as an affiliate to selling items. Sometimes the code gets changed and what I see in the end result isn't what I started with. I'm using php and mysql.
  17. G

    How do I randomize with higher rating on some parts?

    Sorry, yeah, php and MySQL
  18. G

    How do I randomize with higher rating on some parts?

    I have a list of data stored in a database that I want to come up on a page randomly. I have some that I want to come up more often than others. I have them rated on a scale of 1 to 10. I want the 10's to show up most often and the 1's less often. How do I get this to happen? The rating...
Top