www.webdeveloper.com

Search:

Type: Posts; User: multimediocrity

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds; generated 36 minute(s) ago.

  1. Replies
    0
    Views
    317

    Can anyone recmomed a simple CMS?

    Here's what I want. I want a nice, simple CMS that my clients can easily understand to modify their site's content on one or a few pages. I would like them to be able to log in, add images, video,...
  2. Great! Thank you so much! That sounds simple...

    Great! Thank you so much! That sounds simple enough. :)
    So I have this data coming through as a string (all one string). Any idea how I convert that to the proper format?
    Sorry... I'm new to...
  3. How do I tell if a time is 36 hours past another time and date?

    Here's my problem. I have a date an time format that looks like this:
    06-01-2012, 10:15am (MM-DD-YYYY, HH:MMxx).

    What I want to do is create code (using PHP, preferably) that checks whether this...
  4. OH! Auto-increment wasn't set! Wow, why do I only...

    OH! Auto-increment wasn't set! Wow, why do I only find my answers after I ask for help? :P
  5. I can only add one row to a table. Why?

    I have a database full of many tables. They're all working fine. However, on this one table, I can only add one row. As soon as that one row is added, I cannot add any more rows. Why?

    Here's the...
  6. Sure, semantics aren't a problem. I'll give this...

    Sure, semantics aren't a problem. I'll give this a try. Thanks!
    I thought there'd be a built-in way to do this with PHP. :)
  7. How do I change the file name if it already exists?

    I'm uploading images through PHP. I'm using the following segment of code:



    if (file_exists("photos/" . $_FILES["file"]["name"]))
    {
    echo $_FILES["file"]["name"] . " already...
  8. I'm wondering if it has something to do with...

    I'm wondering if it has something to do with character encoding. Maybe GET will cause problems with encoding, but POST preserves the characters?
  9. Is it possible to upload an image using GET?

    I would like to add an image uploader to my site. From what I can tell, I need to use POST methods to send the data from the uploaded file to the next page. If I use the GET method, the $files...
  10. I think I'll use TinyBox2 for this solution....

    I think I'll use TinyBox2 for this solution. http://www.scriptiny.com/2011/03/javascript-modal-windows/
  11. Need to create a popup box with a page inside

    I would like to use JavaScript (or jQuery) to open a box on my page (like a lightbox) upon clicking a link. I would like this box to contain the contents of a new page, like an iframe. How would I...
  12. I think the "problem" is that there are so many...

    I think the "problem" is that there are so many that will work just fine. I would definitely recommend a large company to a smaller, unless the company offers hosting as part of a package. I suppose...
  13. Aah, yes. Ok, thanks! I thought there was a more...

    Aah, yes. Ok, thanks! I thought there was a more standard way.
  14. Replies
    1
    Views
    439

    How do I duplicate a row?

    I would like to duplicate a row and change one of the cells.
    Is there a way to do it using a MySQL query? I know I can do it using a Select and Insert, but I wanted to know if there was a way to do...
  15. I know I can do orders_id = 1 OR orders_id = 2,...

    I know I can do orders_id = 1 OR orders_id = 2, and so on, but is there a more standard way?
  16. How do write a where clause with multiple numbers

    I'm spacing on this. I'm sure it's simple, but I can't recall it.

    I want to write a clause using a WHERE statement.

    SELECT * FROM products WHERE orders_id = 1 ORDER BY products_model

    This...
  17. Then explode I shall use. I thank you for your...

    Then explode I shall use.
    I thank you for your time. :)
  18. Get string data between characters

    I want to get information between two characters using PHP.

    For example, if I have the string:

    Tralala*42*lalala*wee*morewords

    I want to extract the characters between the first two *...
  19. Yeah, I could imagine. But I'll use it for now. :)

    Yeah, I could imagine. But I'll use it for now. :)
  20. Hmm... people should use this more. Thanks for...

    Hmm... people should use this more.
    Thanks for sharing!
  21. Thanks! Is that the standard? I've used so much...

    Thanks! Is that the standard? I've used so much CSS, but this has never come up.

    Thanks again!
  22. Argh! Answered my own question.

    Argh! Answered my own question.


    <?php
    // Delimiters may be slash, dot, or hyphen
    $date = "04/30/1973";
    list($month, $day, $year) = split('[/.-]', $date);
    echo "Month: $month; Day: $day;...
  23. Is there a way to style using type?

    I would like to change the appearance of an input (type=text) field using CSS. However, I would like input (type=submit) to look different. Is there a way I can do this in CSS without making my own...
  24. How do I easily turn this date into separate variables?

    It sounds easy. I've done it before, but when I browse the web for a solution, I turn up nothing.

    I have a string like this: 04/07/2012

    I want to turn this into a month, day, and year variable....
  25. What are the pros and cons of Sitefinity?

    I'm interested in learning more about Sitefinity. I've been working with it for a while and I'm wondering what the pros and cons are of this software as opposed to other CMS softwares.

    Thanks,
    M
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles