Jump to content

Dennis

Members
  • Posts

    92
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://www.indigohue.net

Profile Information

  • Location
    Singapore

Dennis's Achievements

Enthusiast

Enthusiast (6/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Haven't been on the forums for a while, but great to see the family still grow. A really good job for the new site! Now TCH looks as great as it's services is! Rock Sign
  2. Actually there is a built in function in Dreamweaver MX. Just go to Insert>Form>Jump Menu, and you can set this up easily. Dennis
  3. Add this before your MySql query, but in between a PHP <?php ?> $Get_current_date= date('Y m d'); Then add $Get_current_date into $insertSQL = sprintf("INSERT INTO SUBSCRIBER_T (FULL_NAME, EMAIL_ADDR, CREATE_DT) VALUES (%s, %s, %s)", GetSQLValueString($_POST['FULL_NAME'], "text"), GetSQLValueString($_POST['EMAIL_ADDR'], "text"), GetSQLValueString($Get_current_date,"date"));
  4. Or this: date('Y m d'), "date")); Since you do not need the time which now() provides.
  5. Try this if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) { $insertSQL = sprintf("INSERT INTO SUBSCRIBER_T (FULL_NAME, EMAIL_ADDR, CREATE_DT) VALUES (%s, %s, %s)", GetSQLValueString($_POST['FULL_NAME'], "text"), GetSQLValueString($_POST['EMAIL_ADDR'], "text"), now(), "date")); mysql_select_db($database_test, $test); $Result1 = mysql_query($insertSQL, $test) or die(mysql_error());
  6. Signed that.....down with monopoly, Go straight to Jail, Do not collect Pay. Dennis
  7. Found this great little program where you can do a whois and IP lookup directly from Windows commandline or Windows. http://www.whoisview.com/products/whoisview/ Dennis
  8. Merry Christmas and a Happy New Year everyone
  9. Netobject Fusions is quite easy to use as well...... Dennis
  10. Search for httpd.conf and open it with wordpad (probably at C:\phpdev\Apache\conf if you did the installation without any changes to the path etc.) don't use notepad cause it jumbles up all the text making it diffcult to read. Look for ># # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # DocumentRoot "C:/phpdev/www/" and change the DocumentRoot "C:/where/ever/you/want/it/to/be" and that should do the trick. Dennis
  11. Try www.******/cpanel You would be prompted for your username and password, after which you be in Cpanel's page....enjoy Dennis
  12. Congrats Jim Now, no more fishing for you, ya hear...... Dennis
  13. Try this article at Macromedia AMFPHP which would show you how to connect to a PHP backend using a Flash frontend. Dennis
  14. Looks like a permissioning problem....try changing the news_rss.php's permission... Dennis
×
×
  • Create New...