Jump to content

jameslee

Members
  • Posts

    8
  • Joined

  • Last visited

jameslee's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. use javascript validations.regex.
  2. php3, and phtml are rarely used these days. alot of hosting companies do not put it their apache configurations as a file extension. as you learn more php, you will see that just using the php file extension will be a lot easier.
  3. http://curl.haxx.se/go here and read.
  4. actually from bluedragon. from devshed <? // At the beginning of the page $time = microtime(); $time = explode(' ', $time); $time = $time[1] + $time[0]; $start = $time; // -------------- // your code here // -------------- // At the end of the page $time = microtime(); $time = explode(' ', $time); $time = $time[1] + $time[0]; $finish = $time; $total_time = round(($finish - $start), 6); ?>
  5. you should first see if your host provider has a database. usually Host providers offer mysql database.Then you need learn how to use MySQL.go to the main page and laern the tutorials there. then you will need to learn how to properly code PHP. go to php.net for the correct way of learning. read all the documentation.then on your website load up phpmyadmin, so you can administer the mysqldatabase much easier.once you have all this. you should be able to save your data (web log) to the mysql database, Via your "form" and then you can display all your rants and raves to the world.really if you want to make your web log much more efficient, lose the WYSIWYG, learn to code by hand. you will get better results that way. Plus learn to create tables without tables. Learn CSS!!!
×
×
  • Create New...