Vujsa's CMS101 And CMS102 Tutorials - Where is the link between cms101 & cms102 tutorials

free web hosting
Free Web Hosting > Computers & Tech > Programming > Scripting > PHP

Vujsa's CMS101 And CMS102 Tutorials - Where is the link between cms101 & cms102 tutorials

Neyoo
I have read Vujsa's tutorials on cms101 and cms102. As a beginner to cms, php and mysql this tutorial has been very helpful. Thanx for Vujsa, really appreciate what you've done for guys like.

But I have had a problem with the missing links. How do I integrate this tutorial with tables I create in php/mysql database. I understand the includes, the problem is with the files I would have create in mysql table. How do I link to those files using includes and is there a management page for the files I create using mysql. Thank you as I await your reply.

Reply

vujsa
As I understand your question, you are wanting to save the various components of your template in a database instead of the file system. Is this correct?

Well, you don't use includes for that operation. Instead, you will use various mySQL functions to retrieve the data.

In CMS102 - Content Management System Design, Basic CMS With PHP & Flat File Databases I showed you how to use a dynamic URL to determine which content to display on your website.

For example:
www.mycms.com/index.php?page=news&header=header1
Would show the standard webpage for your site with the news.php file as the content and the header1.php file as the page header.

What I think you are wanting is to save the data in news.php and header1.php in a database table instead of in a file.

So instead of creating a file and adding data to it to save in your file system, you need to create a new record in your database.

If news.php had the following data in it:
CODE

<b>D-Day!</b><br>
<i>By vujsa</i><br>
June 7, 1944<br>
<br>
    Yesterday the Allied forces invaded Normandy, France in a effort to gain a foothold in the war with Germany.....<br>
<br>
<br>
<b>Japan Attacks Pearl Harbor!</b><br>
<i>By vujsa</i><br>
December 8, 1941<br>
<br>
    Sunday, December 7, 1941; The Japanese navy launched an attack on Perl Harbor near Honolulu, Hawaii.  The attack lasted....<br>
<br>
<br>
etc, etc, etc,...

Then instead of savinf that information as a file, you would save it into your database table. You'll need some structure to your database table to get it to work correctly. At the very least, you need 2 fields (columns).
"name" and "body".

So first we need a database table to work with. If you don'tknow how to create a table or a database for this operation, please search the forums before continuing.
We'll name our content table "mycms_content". We'll use the "mycms_" prefix for all of our tables related to the CMS so that we don't get confused later!

In "mycms_content", we need to create a field named "name" as the type "tinytext". Then we create a second filed for the data named "body" as the type "text". Although we really don't need it, we will also ad a field for the record id. This isn't needed as long as the table remains simple but if additional fields are added later, then we'll need this. Might as well plan ahead now.
The third field is "id" and is of the type "tinyint"; it should auto_increment , be the record key and should be unique!
Here is the SQL command for creating the required table:
SQL
CREATE TABLE `mycms_content` (
`id` TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`name` TINYTEXT NOT NULL ,
`body` TEXT NOT NULL
) TYPE = MYISAM ;


Then you just insert the data and name of your content into the table with the following SQL command:
SQL
INSERT INTO `mycms_content` ( `id` , `name` , `body` )
VALUES (
NULL , 'news', '<b>D-Day!</b><br> <i>By vujsa</i><br> June 7, 1944<br> <br> Yesterday the Allied forces invaded Normandy, France in a effort to gain a foothold in the war with Germany.....<br> <br> <br> <b>Japan Attacks Pearl Harbor!</b><br> <i>By vujsa</i><br> December 8, 1941<br> <br> Sunday, December 7, 1941; The Japanese navy launched an attack on Perl Harbor near Honolulu, Hawaii. The attack lasted....<br> <br> <br> etc, etc, etc,...'
);

We now do the same for our header1 data!
SQL
INSERT INTO `mycms_content` ( `id` , `name` , `body` )
VALUES (
NULL , 'header1', '<a href="http://www.astahost.com"><img src="http://www.astahost.com/style_images/astalogo4ly.gif"></a>'
);

Basically that is just a banner ad for AstaHost! tongue.gif

Congratulations, you now have your content in your database. But how do you get it out now?




Going back to our sample URL: www.mycms.com/index.php?page=news&header=header1

We start our PHP script in the usual way but then it will change quickly!
CODE

<?php
$page= $_GET['page'];
$header= $_GET['header'];


?>

Now all the script is doing is finding out what page and header were requested. We have to do a database query to find the required content.

Here is the SQL command to use to find our "news" content:
SQL
SELECT `body`
FROM `mycms_content` WHERE `name` = 'news'
LIMIT 0, 30


In PHP, that would look something like this:
CODE

$sql = 'SELECT `body` FROM `mycms_content` WHERE `name` = \ 'news\' LIMIT 0, 30 ';


So for us to fully retrieve our content and use it, we do the following:
Some of this is basic SQL scripting that I won't go into here. Learn more about it by searching the forums.
CODE

<?php
$page= $_GET['page'];
$header= $_GET['header'];
$connection = @mysql_connect("localhost", "username", "Pa5Sw0rD") or die(mysql_error());
$db = @mysql_select_db("My_DataBase", $connection) or die(mysql_error());

$sql = "SELECT `name` FROM `mycms_content` WHERE `name` = \ '". $page ."\' LIMIT 0, 30 ';

$result = @mysql_query($sql, $connection);
if (!$result) {
   echo 'Could not run query: ' . mysql_error();
   exit;
}
$row = mysql_fetch_row($result);

$main_content = $row[0];

$sql = "SELECT `name` FROM `mycms_content` WHERE `name` = \ '". $header ."\' LIMIT 0, 30 ';

$result = @mysql_query($sql, $connection);
if (!$result) {
   echo 'Could not run query: ' . mysql_error();
   exit;
}
$row = mysql_fetch_row($result);

$main_header = $row[0];
?>


Okay, that is the most direct and ugly way to get your data from the database! All we did was search the database to get the body of the file who's name matched what the value was in the dynamic url. In this case we searched for "news" and "header1"! That definitely needs some optimization later but now let's just get to the content insertion section.

In CMS102, I said that where ever you wanted your main content, you would use this: <?php include($main_content_file); ?>! That has now changed since you are no longer going to include a file but instead you will be echoing a string of content. Now where ever you want your main content, use this command: <?php echo $main_content; ?> The same is true for the positioning of your header data but the variable would be $main_header!




That is the rough explaination of the system. You would still have to design a database interface for inserting, editing, and removing content from your website but that is a whole other discussion for later I guess.

I reccommend writing a function to handle your database query instead of writing a new query for each content section of your website. The key is to have the PHP handle as much of the work as possible so using functions and loops will save you a lot of work in the long run.

Let me know if there is more information that you need about this.

vujsa

 

 

 


Reply

Neyoo
Thanks Vujsa,

Your reply was very instructive. Now I realise I've learnt something new, talking about cms101 and cms102. However your recent tutorial just won't work. What I did was to copy the php and sql script and using my xampp, see if everything would work but I kept on getting errors. I have looked carefully at the script and tried to changed the codes but still no luck. Would you pls shed more light on the tutorial as I'm only a beginner. But I can create database and mysql tables. It's the manipulation of the scripting to produce dynamic sites with addresses such as (www.mycms.com/index.php?page=news&header=header1) or (www.mycms.com/index.php?page=12345) that I'm looking to really learn.

Learning these basics would surely help me on. Thank you as always for what you are doing.

Neyoo

Reply

vujsa
QUOTE(Neyoo @ Dec 13 2006, 08:31 AM) *

Thanks Vujsa,

Your reply was very instructive. Now I realise I've learnt something new, talking about cms101 and cms102. However your recent tutorial just won't work. What I did was to copy the php and sql script and using my xampp, see if everything would work but I kept on getting errors. I have looked carefully at the script and tried to changed the codes but still no luck. Would you pls shed more light on the tutorial as I'm only a beginner. But I can create database and mysql tables. It's the manipulation of the scripting to produce dynamic sites with addresses such as (www.mycms.com/index.php?page=news&header=header1) or (www.mycms.com/index.php?page=12345) that I'm looking to really learn.

Learning these basics would surely help me on. Thank you as always for what you are doing.

Neyoo

Okay, I guess I may have under estimated your level of programming when I replied to you. Having a hard time with some of your questions. Seems like you have left some key factor out of your posts. I'm not usre what we are missing from the first post but in the second post, I know that I'll need to know the error messages you are getting in order to figure out the problem.

Most of my tutorials are very general to leave users with a roadmap to building their own script however they fell most comfortable. As a result, I don't discuss error checking and security measures in any tutorials since everyone has their own method. I also don't go into much detail on script extras since they may not be used by the end reader. If you want to add something on to a tutorial, I think I leave it basic enough to adapt later. If I get too specific, then the script is much more difficult to adapt to the user's needs later. Basically, I discuss techniques and methods rather than actual scripts.

Having said that, some time when I'm in a hurry, I don't actually run the scripts you see in the posts I write. I'll just start typing in the post box and use logic and my knowleged of php to output code for the topic. In the case of my previous post on this subject, I never tested the script and tested very little of the chunks of code used. I ran a few database queries to be sure I had the SQL correct but none of the PHP has been tested. sad.gif

So I don't have a working copy of a script for you to test on my server. So I'll need you to provide any error messages you have to me so I can figure out what went wrong.

I'm sorry it has taken so long to reply to you. Kind of a busy time of the year for me personally and professionally.

As for you date problem you requested help on, I'm not sure what the problem is without seeing some code but I'll give it a try.

Usually, when I save a date to the databse, I prefer to use UTC which is the number of seconds since the Epoch (01/01/1970). It usually is a rather long number and is based on GMT so it will be the same for everyone everywhere and can be displayed based on the local timezone for local output to the user.

This value can be obtained for the current time with time();
Now when you want to display a date, you have to use the date() function but have to specify the timesatmpt used or the current date and time will be used.

If the current time is 12/18/2006 09:30PM and you use the following:
CODE
echo date('Y-m-d');

2006-12-18 will be displayed!

But if you use a timestamp with the date like so:
CODE
echo date ('Y-m-d', 1166365800);

2006-12-17 will be displayed.

So if you don't specify a timestamp, the current time is used by default.

If this doesn't answer your question, let me know.

vujsa

Reply

Neyoo
Hello Vujsa,

Thank you very much for your detailed reply. I picked up a tutorial somewhere else just before I stumbled upon yours and that has helped me resolve the dynamic urls I wanted to be able to create. Infact I now use a combination of what your last tutorial discussed and your static php page includes. I have almost finished a complete redesign of my alumni site.

But the date problem is still unresolved. This is the code I used - $postdate = date('d-M-Y'); I created the postdate table field in my database and assigned date value to it. But all I get is the date keeps changing to my system date not matter and NEVER when the post was actually made. It's the last piece of problem preventing me from posting my site. I look forward to your help.

Thanks,
Neyoo


Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Recent Queries:-
  1. vujsa - 251.12 hr back. (1)
  2. tutorials - 330.81 hr back. (1)
Similar Topics

Keywords : vujsas, cms101, cms102, tutorials, link, cms101, and, cms102, tutorials

  1. How Do You Get A Smf?
    Help, I've tried the tutorials and it doesn't help (14)
  2. New Tutorials Have Issues
    Before they are approved tutorials show up, and with confusing errors (2)
    I recently decided to put up a new tutorial. I understand that new tutorials need to be approved
    before they show. Don't mind that at all. However - I noticed in the bottom area of "new
    topics" my tutorial is already showing. Clicking it get the error... QUOTE > Board Message
    Sorry, an error occurred. If you are unsure on how to use a feature, or don't know why you got
    this error message, try looking through the help files for more information. The error returned was:
    Sorry, some required files are missing, if you intended to view a topic, it's possib....
  3. Vray/3dsmax Tutorials
    3D rendering with Vray (1)
    Hi people, please send request about tutorials for 3ds max and vray....
  4. Hacked By Dumansal
    When clicking on FAQ link at top of page (2)
    Hi. Didn't think I'd bring this up because I was sure that you'd be onto it soon
    enough. However, it's still there after a few days. Clicking the FAQ link in either AstaHost
    or Trap17 results in a message "Hacked by DumansaL" followed by a database error. I did a forum
    search for the phrase just now... apparently nothing had yet been posted about it. Regards - Lancer....
  5. Link To Other Computers
    (4)
    I am having trouble creating symbolic links to another computer on Ubuntu. This is what I want to
    do (erm, sort of): CODE ~/Music -> 192.168.0.194/media/OS/Users/FirefoxRocks/Music or
    CODE /home/vincent/Music -> 192.168.0.194/media/OS/Users/FirefoxRocks/Music or even CODE
    /media/qdrive -> 192.168.0.194/media This is what I have tried:
    firefoxrocks@ubuntu-desktop: sshfs user@192.168.0.194:/media/OS /media/qdrive and
    firefoxrocks@ubuntu-desktop: ln -s \\192.168.0.194 /media/qdrive The first one says
    read: Connection rese....
  6. Can You Link Game Maker With Mysql/php
    Title says it :D (0)
    Hello, I am new to this service and i think I am going to like it =). Anyway, my main question is
    can you link executable games made by gamemaker (i have pro) to a database? And can i use the php
    server i get here to transfer data to that game? If so i would appreciate a little help with it
    because I am new to both =). Also is there anyway to get a www.mywebsite.com via credits from
    astahost? Finally is there any group here that works with gamemaker? we might have small contests
    or so /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /....
  7. Site Link Analyzer Tool
    (1)
    The Site Link Analyzer is another simple SEO tool that helps you to verify all outbound -external-
    links and/or internal links of any web page. Keeping track of links is an important pastime, and it
    just got easier than ever. Examine any webpage's outbound links (or its internal ones) by using
    the Site Link Analyzer . The Site Link Analyzer tool only requires that you enter an address,
    decide which type of links you'd like to learn about, and make the same choice regarding
    nofollow attributes. It'll then return relevant links' URLs and anchor text....
  8. Wordpress Tutorials
    tutorials about word press (0)
    Hey not sure anyone here can do a tutorial about wordpress but I think that wi would rock if we can
    get some wordpress gurus out there to write some tutorials about wordpress. I use it a lot but not
    sure I am ready to write a tutorial because I feel I'm still a noob at Wordpress. Once I become
    a well versed wordpress user i want to post tutorials. But at the moment can we add a wordpress
    section not sure I saw one and or if anyone here would think its usefull to have it. I know I would
    benefit from it and I would love to see people post on it as I think wordpress....
  9. Programming Games With C/c++ And Sdl
    Great tutorials (1)
    Hello, I post a link to some great tutorials at C/C++ programming with SDL. You can easily learn
    how to make a 2D cross-platform game. They're really easy-to-comprehend and well-explained.
    Link PS: I'm not an author of those! kaziorvb....
  10. Making A Link = Mysql_query
    (8)
    Hey! I will try to make this as clear as possible. how can I make the following. I have a
    list, of all members on my site. If I press on a members name(link), I will come to his profile. To
    come to his profile, I need to get out some vaule from the database, but to get out some value from
    the database, I must tell the code, how it should know who the user is (hard to understand?). To do
    that, I must add a mysql_query in the code ( I think), like "SELECT user FROM dbname WHERE
    user=link".. This is just how I think it works. I know it is kinda wrong.. but I don'....
  11. Links For Php Tutorials
    (1)
    Few PHP Tutorials I got from internet!!!!!!! http://www.php.net/
    http://www.w3schools.com/php/ http://www.tizag.com/phpT/ http://phpbuilder.com/
    http://www.phpfreaks.com/ http://www.learnphpfree.com/ http://www.hotscripts.com/PHP/
    http://hudzilla.org/phpwiki/ http://www.spoono.com/ http://en.wikibooks.org/wiki/Programming:PHP
    http://codewalkers.com/ http://pear.php.net/ http://www.phpclasses.org/
    http://www.phpdeveloper.org/ http://php.resourceindex.com/
    http://sourceforge.net/projects/phplib http://www.faqts....
  12. Website Directory !
    No link back required !!! (3)
    Visit http://www.jbi.in/links/ and join our website directory . QUOTE NO LINK BACK REQUIRED
    After registering please post here for speedy approval .....
  13. Imagemap With Image As Other Link
    (0)
    Hi, I have an imagemap with a couple of links to other pages, but I would also like the whole image
    to be a link, for example the code below My
    aim is to have a user brought to link2 or link3 by clicking on the specific areas of the map, or
    else brought to link1 by clicking anywhere else. This works in FireFox 2.0, but Internet Explorer 6
    ignores the link1. I can achieve the effect that I am looking for by defining an AREA on the
    imagemap that covers all the image, and is overridden by the specific areas, but the li....
  14. Can I Copy Some Of My Tutorials
    (1)
    hi can i copy some of my last tutorials to trap17.com because i want to continue my posting at
    trap17.com is it possible, or it is spaming? thanks....
  15. Can I Move My Tutorials To Trap17?
    I couldn't find a closer category (2)
    I apologize for placing this topic in the wrong category; however, I could not find one that would
    match this thread closer. ok, on to my post. A while ago I had posted a series of tutorials here
    at Astahost for programming in GLUT. Since then I have moved to trap17 and have wanted to continue
    my series; however, I was told that I was unable to just copy my tutorials over there and since I
    wasn't thinking clearly I had forgotten to ask if I could move them there. So my question now
    is if I'm allowed to move my tutorials over to trap17 as long as I delete them....
  16. Writting Tutorials For Your Website
    An Overview To Layout And Content (4)
    I was recently asked about suggestions for tutorial layouts. QUOTE(Chesso @ Mar 31 2007,
    11:01 AM) 100770 vujsa sorry to cut in here, but do you have any advice for tutorial layout
    (and like what is good to build for creation)? My site has somewhat a simple and good enough file
    layout, just basic tables with minimal information, description and screenshot, but I have never
    gotten the tutorial aspect off the ground because it's rather annoying to write for and have it
    displayed nicely. I'll attempt to give some insite and guidence in this area....
  17. Can Hdmi Be Converted To Dvi-d Dual Link?
    (0)
    I currently have a PS3 that is outputting using HDMI. The HDMI is converted to DVI-D and connected
    to a Dell 20 inch flat panel. This works nicely, except that I can do a maximum resolution of 780p,
    and I would like to do 1080p. So I am thinking about upgrading my monitor, and I was thinking, why
    not go for a 30 inch monitor? But the 30 inch monitor requires DVI-D Dual Link. I was wondering if
    HDMI could be converted to DVI-D Dual Link or whether I would be wasting my time (and money). The
    adapter I have has the slots for a Dual Link DVI-D cable, but I don't kn....
  18. Supercharge Your Broadband Link With Free DNS From OpenDNS
    (0)
    I just came across this great free DNS service called OpenDNS which can prove to be an
    effective solution for all those broadband users suffering from high address resolution latency.
    For most part our own ISP's DNS Servers are pretty much ill-configured and in my case gives up
    on me quite often. Here's an excerpt from my article at Chaos Lab.. QUOTE(Chaos Lab) Do
    you often encounter slow page-load times despite using a decent broadband connection? Does you
    browsing experience often come to a bitter halt with a message like " Looking for xxx.com....
  19. Visual Basic Express Tutorials
    Need resources (5)
    I have just downloaded Microsoft Visual Basic Express 2005 and I need a tutorial to help me learn
    how to create simple programs. I have already watched the 16 hour RSS Reader series from Microsoft
    and I'm currently working on that. I also have developed a Web Browser and a weather tracker
    system, from the help of Microsoft E-Books and other Microsoft resources. If you could find any
    non-Microsoft resource on Visual Basic Express, that would be greatly appreciated.....
  20. Flash 8 - Game Tutorials?
    (8)
    Not sure if this is exactly the right place for this question, but I am very eager to find some
    learning material or tutorials/articles in creating games using Flash 8 (which uses ActionScript I
    believe?). The only thing I have really done in Flash so far is create a slide presentation with
    forward/back buttons that is a tutorial for Delphi that I put up on my site. I am looking for some
    basic flash game tutorials to get me started, so I can see some real code to play with, like uhh
    Snake, Tetris, a asteroids type game, all the sort of popular starter games. I have ex....
  21. Link
    Where can i find (5)
    Where can i buy links....
  22. Photoshop Tutorial Site: Lots Of Good Ones
    Lots of good tutorials (11)
    Just a found a PhotoShop tutorial site that is new to me. It's in a forum version and has a lot
    of really interesting tutorials. I'm always looking to expand my Photoshop skills. If
    you'd like to check it out visit the forum .....
  23. A Huge List Of Links To Photoshop Tutorials
    (5)
    Here u go Photoshop Tutorials: http://www.stab.se/aq/ny/pstips/fwf_all.htm
    http://www.tutorials911.com/tutoria...splay.php?cid=5 http://www.mynx-home.tk/
    http://wwwebmasters.net/tutorials/Photoshop/ http://www.wastedyouth.org/tutorials.php
    http://www.hyperpark.com/tutorials.htm http://www.pragt.net/tutorials/photoshop/
    http://gliebster.com/tutorials/ http://www.bobsphotoshopsource.co.uk/pstuts.htm
    http://philoader.net/v/tutorials5.html http://www.wetzelandcompany.com/MonthlyTipB.html
    http://www.stewartstudio.com/tips/phototip.htm http://www.2gi....
  24. Suggest Books/tutorials For Solaris 10 Beginner
    a little help please (2)
    ok this isn't a request for a tutorial...cause it would be like asking for someone to write me
    an instruction/teaching book for free...lol...unless someone really feels like doing so...lol.
    What I am asking for is a couple of book titles that would be good for a beginer to get so as to be
    able to have a good referance for this OS. Thanks in advance....
  25. Photoshop Tutorial: Part 1 - Terminology
    Get familiar with industry terminology (4)
    Key terms and concepts Adobe – software company established in 1982. Invented PostScript and
    later, the Portable document Format (PDF). They are responsible for the popular applications
    Photoshop, Illustrator and InDesign. Many beginners erroneously call Illustrator or Photoshop
    "Adobe" (as in "when I open up Adobe...") Don't make this mistake. Adobe is the company - use
    the name of the software you are working with. Photoshop – raster image manipulation application
    created in 1986 by Thomas Knoll and purchased by Adobe in 1988 to be released in 1990. Version....
  26. Action Script
    Tutorials (5)
    Well Action Script can be a pain in the ass sometimes, especially if you have no clue about
    programming, or other languages. This tutorial will let you learn the speceific action script code
    you need for certain effects on your animations, without having to learn it all, but instead part by
    part depending on your needs. http://www.actionscripts.org/tutorials.shtml You can even save
    yourself the reading time and download examples instead!! Great Site. -----This is not a
    tutorial, but a link to a tutorial. Should belong in the ActionScript forum instead.---....
  27. C++ Tutorials And Websites
    (10)
    I am trying to learn C++. Do you guys know of any good C++ tutorials or resource sites? I have a
    book but is only the basics. I am about half way through it. I am trying to put together resources
    for me to learn the more advanced stuff. Also how about some free compilers? Thanks....
  28. Three Html/ Css/ Javascript Tutorials
    (6)
    Here are some tutorials that always get great results when I post them. Lesson 1 HTML means Hyper
    Text Markup Language. HTML is a very common language used for many websites, is the base for more
    complicated and powerful langauges like php, HTML can seem hard, but you will find it is one of the
    easiest langauges one can learn. The core of HTML is the tag, a tage is just a set of two
    arrows-like brackets created by hitting Shift and the comma key, or Shift and the period key. They
    look like this... HTML HTML > Tags start a change in the way a webpage ....
  29. Find Out Dead Links In Your Site Automatically
    Want to see a dead link on your site? (11)
    If you try to go to http://www.dead-links.com you will be asked for your domain or url. Enter it
    and the bot will find any dead links that you might not have seen. Have a nice day.......
  30. Writing Good Tutorials
    An introduction (6)
    Before posting a tutorial, please make sure that it meets a few basic requirements: The spelling is
    as accurate as possible. The language used is as understandible as possible. As few slang acronyms
    as possible are used - eg. avoid things like 'IMO', 'LOL', 'FYI',
    'BTW', etc. Absolutely NO 'short-hand' is used - eg. 'u'='you',
    'r'='are', '2'='to'/'too', 'c'='see', etc.
    It is in English. It's not everyone's first language, but I would assume that mo....

    1. Looking for vujsas, cms101, cms102, tutorials, link, cms101, and, cms102, tutorials

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for vujsas, cms101, cms102, tutorials, link, cms101, and, cms102, tutorials
advertisement




Vujsa's CMS101 And CMS102 Tutorials - Where is the link between cms101 & cms102 tutorials



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE