www.webdeveloper.com

Search:

Type: Posts; User: NogDog

Page 1 of 5 1 2 3 4

Search: Search took 0.25 seconds; generated 24 minute(s) ago.

  1. Replies
    1
    Views
    113

    guess I should be glad I signed up here many...

    guess I should be glad I signed up here many years ago
  2. Thread: General

    by NogDog
    Replies
    3
    Views
    298

    Oops. You're right -- I didn't feel like testing...

    Oops. You're right -- I didn't feel like testing an infinite loop to see if it's really infinite. ;)
  3. Replies
    9
    Views
    459

    If it's not a POST request, then you need to send...

    If it's not a POST request, then you need to send and data via the URL query string instead of as POST data. See http_build_query() for help in doing that.
  4. Replies
    9
    Views
    459

    I'm guessing that this line overrides the setting...

    I'm guessing that this line overrides the setting and forces it to use POST:


    curl_setopt($ch, CURLOPT_POSTFIELDS,$curlData);
  5. Thread: General

    by NogDog
    Replies
    3
    Views
    298

    if(1 == 1) { echo " Hello, World. \n";...

    if(1 == 1) {
    echo "<p>Hello, World.</p>\n";
    }
  6. Replies
    2
    Views
    172

    Welcome to the forums. In the future, you can...

    Welcome to the forums. In the future, you can help us to help you by making use of the forum's [code], [php], and [html] bbcode tags around your code snippets. (I added some [code] tags for you, as...
  7. Replies
    2
    Views
    335

    If the source file is not too huge (for some...

    If the source file is not too huge (for some undefined value of "too huge"), I might just send all the data (perhaps as a JSON object?) and let JavaScript handle the line-by-line display on the...
  8. Replies
    3
    Views
    313

    Not that anything in this thread so far seems to...

    Not that anything in this thread so far seems to have anything to do with register_globals in PHP, mind you (which has been deprecated for years and is no longer available as of PHP 5.4.0).
  9. Replies
    3
    Views
    319

    Founder would normally be used in the context of...

    Founder would normally be used in the context of founding a business, as opposed to creating a technology which that business uses. So if, say, you get serious about this business and form a LLC...
  10. Thread: Align

    by NogDog
    Replies
    7
    Views
    351

    Probably the simplest and most portable solution...

    Probably the simplest and most portable solution is to wrap the button in a form tag that has as its action the URL you want to link to.


    <form action="http://example.com/page"><!-- button stuff...
  11. Thread: Align

    by NogDog
    Replies
    7
    Views
    351

    So, change the "align" attribute to a "style"...

    So, change the "align" attribute to a "style" attribute, and choose the desired styling (e.g. "text-align:left;", perhaps?).
  12. Replies
    1
    Views
    318

    Firstly, is file.exe on the linux server, and...

    Firstly, is file.exe on the linux server, and either in the search path or the same directory as where the PHP script is being run?

    Secondly, does Linux have any way of knowing what type of file...
  13. Replies
    4
    Views
    375

    Pretty much anything you want to store and...

    Pretty much anything you want to store and persist beyond a single user's session.

    As a quick example, every post on this site is stored in a database, as well as info about every registered user....
  14. Replies
    2
    Views
    290

    It's more likely just an SQL error of some sort....

    It's more likely just an SQL error of some sort. I might try some debugging along these lines:


    $result = $this->_conn->query($sqlSP);
    if($result == false) {
    ...
  15. Replies
    4
    Views
    375

    I'm sure they use a database. Don't be deceived...

    I'm sure they use a database. Don't be deceived into thinking that using a database is some big resource hog. I think that (false) reputation comes from those who have created poor DB...
  16. One way is to simply output the invoice as an...

    One way is to simply output the invoice as an HTML page, but include a "print" media type in that page's CSS style settings to tailor things for when it's sent to the printer (e.g. suppressing...
  17. Replies
    3
    Views
    427

    I'm guessing that many are in the same boat as I...

    I'm guessing that many are in the same boat as I am: I have no idea what vTiger is. ;)

    Have you tried their forum, yet?
  18. Replies
    3
    Views
    438

    If you choose to roll your own code, you'll...

    If you choose to roll your own code, you'll probably want to look at the PHP IMAP/POP3 functions.
  19. To really answer that, it probably depends on...

    To really answer that, it probably depends on what your exact project will be: you should match your tool to your project, not the other way around.

    Anyway, I have not used Zend, but my 2nd-hand...
  20. Replies
    9
    Views
    459

    PS: You'll be looking for a RESTful client in...

    PS: You'll be looking for a RESTful client in this case, not a server (or something that has both, from which you'll just need the client).
  21. Replies
    9
    Views
    459

    Just a short name and a longer name for the same...

    Just a short name and a longer name for the same thing. :)
  22. Replies
    1
    Views
    237

    check here for latest release info:...

    check here for latest release info: http://www.php.net/
  23. That's what strtotime() will do for you: you pass...

    That's what strtotime() will do for you: you pass it a string representing a date-time -- it recognizes most common formats -- and it converts it to a UNIX timestamp integer in seconds.

    If using...
  24. Replies
    2
    Views
    350

    I'm not seeing anything obviously fatal, so...

    I'm not seeing anything obviously fatal, so without access to the server logs and php error log, I really have no idea.

    I do know, however, that I would not have written it that way, instead...
  25. Replies
    9
    Views
    459

    Easiest thing probably would be to look for a 3rd...

    Easiest thing probably would be to look for a 3rd party PHP class or function for sending REST (or RESTFUL) requests.

    If you want to write it yourself, you'll need to use different curl_setopt()...
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles