No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
I need help generating a timestamp the same way you generate one in flash (actionscript) [code]new Date().getTime()[/code] That's how you generate it in actionscript, it returns a 13 character int. eg 1202497647515 [code] Dim date1970 As Date = "#1/1/1970 12:00:00 AM#" Dim datenow As Date = Date.Now days = DateDiff(DateInterval.Second, …
To indent text you want to use css ie, [QUOTE] function test($text) { $text = ereg_replace("\n", "<p style=\"text-indent: 20px\"> ", $text ); return $text ; } [/QUOTE] That will indent the first line To indent it all [QUOTE] function test($text) { $text = ereg_replace("\n", "<p style=\"padding-left:20px"\"> ", $text ); return …
If your storing passwords in a database its always best to encrypt them in sha-1 or atleast md5. Also make sure your validating the data from the html form, just incase.
If you don't have access to a server you can install xampp to test on. [url]http://www.apachefriends.org/en/xampp-windows.html[/url] That includes php and is very easy for a beginner to setup and get coding.
In order to do what you want to do, you're going to need to do some javascript if you want it to load the data after the 5th box had been chosen. As for the PHP part of it, that would be pretty simple, just grab the data from the …
The End.
steven509