This PHP tutorial elaborates on my second PHP tutorial which covers authentication. This PHP tutorial covers a more advanced PHP script which allow/denies users access to a specific website. Visit http://www.rascal999.co.uk/ for more info, tutorials and forum!
Apologies for the belch half way through, I was unaware I uploaded that version of the tutorial ;)
Please view the video response as it helps prevent possible SQL attack on your database(s)
Channel: Howto & Style Uploaded: June 14, 2007 at 5:33 am Author:Grollon999
i can't find out to make the database login and table login can you help me plz x)?
owenstyles(Monday 22nd of December 2008 05:41:31 AM)
CREATE TABLE IF NOT EXISTS `test` (
`id` bigint(100) NOT NULL,
`username` varchar(20) NOT NULL,
`password` varchar(20) NOT NULL,
`email` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `test`
--
INSERT INTO `test` (`id`, `username`, `password`, `email`) VALUES
(1, 'EDIT YOUR USERNAME HERE', 'EDIT YOUR PASSWORD HERE', 'EDIT YOUR EMAIL HERE');
Arone006(Saturday 20th of December 2008 11:55:19 PM)
thanks for the post
moopro88(Saturday 20th of December 2008 11:39:38 PM)
this is vid # 3 not 4 :) , tnx for vid
67steinip(Thursday 18th of December 2008 03:08:54 AM)
The tutorial was AWESOME!! keep up this ... You really gottah give out many many many more tutorials, its clean i can understand it its not complicated :D and you go line by line :D amazing :D this is how people should explain tutorials
twinimage2(Thursday 4th of December 2008 11:39:14 AM)
Thanks for the tutorial, it was very helpful!
Arone006(Thursday 27th of November 2008 08:06:24 PM)
how to save it?
i've save as XXX.php but the file seems to be XXX.php.txt
deepluv2kvi(Wednesday 3rd of December 2008 05:42:39 PM)
If you are using notepad to write your code you have to make sure when you go to save that the "Save as type:" is set to "All Files" otherwise it will save your page as a text file and not a .php file format.