|
| Web Hosting Deals | Holiday Logo Design | Webcam Chat | Website Header Templates | Register domain | Search Engine Optimisation | Web Hosting |
|
|||||||
| PHP / Perl / Java / JavaScript / CGI Tutorials PHP / Perl / Java / JavaScript / CGI Tutorials Please do not use this Forum to advertise your site or to link to tutorials. |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
||||
|
The CMS (#8) PHP
Ok so as promised this is one of the last CMS tutorials.
All we have left after this is the template system, and allthough thats going to be a fun one, and going to be a lengthly one, we have but a few tutorials left together! As allways Start off with adding to our installer. If your not using our PHP installer, and your using somthing else, then you will need this code: Code:
CREATE TABLE `shoutbox` ( `id` int(11) NOT NULL auto_increment, `name` text NOT NULL, `message` longtext NOT NULL, `time` text NOT NULL, PRIMARY KEY (`id`) ); PHP Code:
Now shoutboxes are pretty much exactly the same as guestbooks. So if you have read my guestbook tutorial, none of this will shock you. PHP Code:
$time= date("h:ia d/j/y"); Gets the time/date $result = mysql_query("select * from shoutbox order by id desc limit 5"); Selects all from the shoutbox with the limit of 5, orderd by ID. echo $row['name']; echo "<br>"; echo "$row['message']; echo "<br>"; echo "<br>"; Is repeated untill the table is empty Ok, so save that in this directory: http://www.yourdomain.com/admin/shoutbox/index.php save it as that. i.e. save it as the file index.php in your shoutbox directory. Right then, now we move onto our edit-shoutbox.php inside our admin directory. PHP Code:
I'm not going too. The observant amoung you will notice that this is dammed near exactly the same code as our edit guestbook posts page. So there is no point me explaining it twice. If you do requre an explanation of it. Please click here. Many thanks, and once again i hope you learned! Cheers Base
__________________
http://www.pointserv.co.uk/gfx/deal_..._pointserv.png PointServ.co.uk - One of the UK's cheapest webhosting companies. Last edited by Base; 04-05-2007 at 12:56 AM. |
|
|||
|
Like all the other parts, good job and well-explained!
Just a little beauty mistakes (not really a mistake but you'll get my point )Quote:
PHP Code:
|
|
||||
|
rofl, realised that just before i read your reply..
lol was trying to get it done quickly as had other things to do :P Edited now ![]() Base
__________________
http://www.pointserv.co.uk/gfx/deal_..._pointserv.png PointServ.co.uk - One of the UK's cheapest webhosting companies. Last edited by Base; 04-05-2007 at 12:58 AM. |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|