Search results

  1. xav0989

    sending mail disabled

    I throw my cap in the air, to all those who, during server moves, reply endlessly to all those users who don't know what search is, where it is and what is it for, to all those user who don't take the time to get informed of what is going on, and to what is happening, that just get angry and...
  2. xav0989

    Dreamweaver cs4 MySQL code does not recognise db

    I see that you are indeed pretty mixed up about $! "$" is an reserved keyword that tells php that what follows, until another reserved keyword or space, is a variable. To be usable, you need to give them a value. To directly use a string, as in your case, you need to use double or single quotes...
  3. xav0989

    Latest Update 6/14/09 News Thread Response

    Make sure that the /pages directory is chmod to 755.
  4. xav0989

    more multiple queries

    I would have one thing to say. Try to separate php code and html code (MVC), it's way better than trying to put everything in the same file. Next, I would not recommend transforming an array into a string, even though php is loose on variable types. Try renaming the 'restraints' string to...
  5. xav0989

    MySQL Error 1044

    I should have been direct the first time... man, why do I always try to do it the calm and easy way first...
  6. xav0989

    mysql_query(select) result improperly empty

    It took some time to figure out, since I had to re-indent all your code, but the mysql_numrows() function doesn't exists. The function you are thinking of is mysql_num_rows(). Here is the corrected code. <?php // Connect to the database. $dbconn = mysql_connect('localhost',$user,$password); if...
  7. xav0989

    MySQL Error 1044

    What do you mean by the RIGHT way?
  8. xav0989

    form email

    the mailto: scheme isn't handled by the server. basically, you are asking if the server can use a client-side function, and the answer is no. You need to either use the mailto or php's mail function.
  9. xav0989

    insert.php help

    tdwrpg, just to remind you, as I see you are quite new here, when you are asking for help, follow these simple guidelines: * Make sure you've search the web, and make it appear. Say something such as "I've searched google." But don't just write that line since us too are able to search google. *...
  10. xav0989

    Simple SQL Problem

    I usually allow null values in my timestamp fields since some programs and scripts have trouble processing 0000-00-00 00:00:00. Or you could setup the database field to hold an integer and directly store the number of seconds since the epoch, as a lot of php scripts are doing.
  11. xav0989

    Ok, so I'm trying to decided wether to use asp.net or php

    didn't you forget the "best" part after the "the"? Anyways, I've started out by learning ASP.net on Visual Studio 2005, then I've switch to PHP after my IIS localhost started to stop working. I switched to apache and php since there was a greater and better support. Also, I didn't the way that...
  12. xav0989

    Why is my Operating System set as Linux?

    Don't worry, most of us passed their at a certain time.
  13. xav0989

    how to create a link that download...

    Concerning the problem of displaying the text file instead of prompting for download, there are many, many, many alternatives on google. Most of these are extremely easy to use, mod, customize. I've myself found one, extremely simple one, that is, and rewrote it to better fit my needs. Send me a...
  14. xav0989

    shell_exec() has been disabled for security reasons?!!

    To my souvenir, it was enabled only, I believe, for the installation of MediaWiki...
  15. xav0989

    all my files are gone

    In summary, after you've read the update thread and that you've checked that your server has completed all 3 passes, you are then allowed to post a support ticket to have a staff member look at your account and restore your files.
  16. xav0989

    secure a page with .co.cc

    SSL isn't available to a regular account since the SSL certificates are generally IP-bound. This means that 2 accounts on the same server cannot use 2 different ssl certificates. To use SSL, you basically need a VPS with your own IP address.
  17. xav0989

    is this possible

    If you are into perl, as well, there are many, many, many other options. For cURL, a simple google search would have been okay, but here are a few links: http://www.higherpass.com/php/Tutorials/Using-Curl-To-Query-Remote-Servers/ http://phpsense.com/php/php-curl-functions.html...
  18. xav0989

    Should regular users be able to post in "announcements" thread?

    What we need is eventually 2 News & Announcements categories. One were only staff can post, and another one where everybody can post, and were the "official" posts/threads would get replicated.
  19. xav0989

    CSS Layout Not Fluid

    I've added through my firebug padding: 50px 0; to wb-middle.wb-center It is not the best solution, but with absolute positioning, it helps. I'd say, go with float, and do a clear: both; after each part.
  20. xav0989

    perl flags on X10

    As I am currently getting back to perl, I'd like to know what flags to use to ensure that there is no errors when executing the script?
Top