Jump to content

AyKay47

Members
  • Posts

    3,281
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by AyKay47

  1. The browser decodes the string automatically, PHP doesn't.

     

    Warning: getimagesize(uploads/cakes/CreamCakes_%2810%29.jpg) [function.getimagesize]: failed to open stream: No such file or directory in

     

    the error is pretty obvious, do you have a file named 'CreamCakes_%2810%29.jpg'?

    And yeah, keep your file names simple to avoid this all together.

  2. I see the picture, but I don't see the correlation of that in the code.

    Just post the css and the html of the relevant data for the left and right columns.

  3. well, what does the css for the other div look like atm?

    Something like this should work:

     

    div.other-div
    {
        position: absolute;
        left: 2px;
        top: 5px;
        z-index: -1;
    }

     

    remember, the z-index property will only work on elements that are positioned.

  4. There is no reason to be using table references, you are using 1 table.

    This is occurring because the where clause in one of the queries is not being satisfied.

    Why not have something like this instead:

     

    select count(distinct id) as id_count, id from users where id = 1 or id = 997

  5. Typically bool values should be used simply for logical reasons as Requinix mentioned.

    Integers should only be used when you actually need an integer value to do something.

    Also, if you assign an integer type 1 or 0 for TRUE or FALSE, you have to be careful of which comparison operator you use should you have to compare the value to another.

    Adds an extra layer that could potentially cause silly errors that can be avoided.

     

  6. Hi i need a form for that reply above (php) as php on its own and it has no form, please help

     

    Third time that you have posted an off-topic post on someone else thread.

    Having a bit of fun or something?

  7. hi i want to store url to images in database for logged in users (where id = $id)

     

    and recall the image hopefully using

    ---------------------

    <img src="<?php echo row['link']; ?>" /> or similar and need help with the sql update string any ideas please help i been stuck with this for some time and now decided to ask around in this forum for help, please help if you can.

     

    Again, don't necro old threads, create a new thread in the proper forum with your question.

  8. No body else got any input? I seem to be having some rendering issue with the tree in the background on occasion on the documentation pages. Would nice to get some help with that.

     

    Any specific environment that you know of that causes the rendering issue?

    I plan on helping you out a bit by forking the code later on this evening.

×
×
  • 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.