www.webdeveloper.com

Search:

Type: Posts; User: criterion9

Page 1 of 5 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    649

    I would probably use some combination of...

    I would probably use some combination of strtotime and/or DateTime:diff.
  2. Replies
    4
    Views
    649

    Are you just looking to see the number of minutes...

    Are you just looking to see the number of minutes between 2 times?
  3. Maybe a better solution is more defensive...

    Maybe a better solution is more defensive javascript coding. You could check for the existence of the attribute prior to altering it and thus be ready for other browsers you may not be testing for to...
  4. Look into auth-capture requests through a payment...

    Look into auth-capture requests through a payment gateway. You will not be able to store the CC details in a database in the manner it sounds like you are suggesting as it violates the PCI and will...
  5. Replies
    1
    Views
    236

    We would need to see the code used, otherwise we...

    We would need to see the code used, otherwise we would just be throwing guesses out there. Most common issues would be path problems where the font file was not located or capitalization if moving...
  6. Either you store the files above the htdocs (or...

    Either you store the files above the htdocs (or whatever your base folder is) or you can store them in a sub folder and block all access with htaccess. Then as described above you check...
  7. Replies
    197
    Views
    14,066

    Maybe you don't need to setImageFormat? ...

    Maybe you don't need to setImageFormat?

    http://php.net/manual/en/imagick.readimage.php
  8. I would say if a user breaks into another users...

    I would say if a user breaks into another users account by guessing the authentication details then their files would be compromised either way. There is not really a need to store the files on...
  9. The content might've been just fine (I'm not an...

    The content might've been just fine (I'm not an expert in the field of workouts or fitness, just web development/business analysis these days). Did you construct that theme yourself? If so, you might...
  10. Many consumers are not likely to purchase from a...

    Many consumers are not likely to purchase from a site that doesn't look "professional" in quality as they don't trust that site to provide the service/product/etc they are looking for. Consumers are...
  11. Is the client a software designer or developer?...

    Is the client a software designer or developer? Foreign keys and additional tables provide a great flexibility when the needs of a data application change (such as SEO as mentioned above). You can...
  12. Replies
    197
    Views
    14,066

    Are you using Session variables to store your...

    Are you using Session variables to store your content perhaps? Are you clearing old values from any Session state when they are changed?
  13. Replies
    6
    Views
    596

    Typed that way too fast and didn't read over what...

    Typed that way too fast and didn't read over what I typed.


    <form method="get" action="http://somedomain.com/edit.php">
    <input type="text" name="thing" value="Waffes" />
    </form>
  14. Replies
    6
    Views
    596

    No PHP needed for the OP's request at all: ...

    No PHP needed for the OP's request at all:


    <form action="get">
    <input type="text" name="thing" value="Waffes" />
    </form>
  15. Replies
    2
    Views
    230

    Are you looking for how to force a download...

    Are you looking for how to force a download dialog?
    http://www.apptools.com/phptools/force-download.php

    Or are you trying to save the contents of a remote file?
    Curl file_get_contents
  16. Do you have error reporting on? Is fsockopen...

    Do you have error reporting on? Is fsockopen disabled in your php.ini? Are you running the php through the MPC server/socket? The tutorial you showed doesn't have you doing that at but instead...
  17. Replies
    1
    Views
    85

    Depends on how you are handling session storage...

    Depends on how you are handling session storage and propagation. You might be able to pass the session id in the url to link the session. If you are storing the session in a shared database (or in...
  18. Thread: Zend MVC

    by criterion9
    Replies
    1
    Views
    47

    Where your previous sites just plain PHP? If so,...

    Where your previous sites just plain PHP? If so, you'll need to rewrite the portions you want to use Zend classes for.
  19. No problem. Glad I could help you clear up the...

    No problem. Glad I could help you clear up the confusion a bit. Don't forget to mark this thread as resolved if your question doesn't still need an answer.
  20. So you are embedding an animation then if you are...

    So you are embedding an animation then if you are showing maps. JSP can embed flash or Java applets just like PHP can. You might look into the Google Maps Javascript API if you want to reduce your...
  21. You can do the same thing in either php or jsp...

    You can do the same thing in either php or jsp without using the flash element why would you want to call jsp from php to read an xml file?
  22. That would depend on your xml, what functionality...

    That would depend on your xml, what functionality was being provided by Flash, etc. If it is just a case of displaying different contents depending on variables PHP is perfectly capable to handle...
  23. Replies
    4
    Views
    208

    I would use graceful fallbacks so that user will...

    I would use graceful fallbacks so that user will get an approximation of the functionality if they can't view the full deal. If a browser cannot support a CSS declaration it won't try so it doesn't...
  24. JSP can produce the exact same html contents that...

    JSP can produce the exact same html contents that load a flash file or are you asking how to translate a flash element into Java?
  25. Replies
    4
    Views
    208

    It depends on what exactly you are looking for....

    It depends on what exactly you are looking for. In Javascript it is best practice to check for feature availability before using it rather than making special cases for different specific browser...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles