CMS - I don't quite get it???

Reply

Join Date: Mar 2007
Posts: 20
Reputation: MKIII is an unknown quantity at this point 
Solved Threads: 0
MKIII MKIII is offline Offline
Newbie Poster

CMS - I don't quite get it???

 
0
  #1
Jun 21st, 2007
I know what CMS stands for, but what does it really do? I mean, I don't quite get what is happening when I see someone's CMS.

Can anyone break it down to me. Thanks.
Reply With Quote Quick reply to this message  
Join Date: Jun 2007
Posts: 1
Reputation: ahmed-samara is an unknown quantity at this point 
Solved Threads: 0
ahmed-samara ahmed-samara is offline Offline
Newbie Poster

Re: CMS - I don't quite get it???

 
0
  #2
Jun 22nd, 2007
Preferred code conversion date to AD Hijra only the language of Java Script



  1. function formatTimestamp($time) {
  2. global $datetime, $locale;
  3. ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2}) ([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2})", $time, $datetime);
  4. $time = mktime($datetime[4],$datetime[5],$datetime[6],$datetime[2],$datetime[3],$datetime[1]);
  5. // COPYRIGHT 2002 BY Ahmed-Samara www.daniweb.com/forums/member173926.html //
  6. $TDays=round($time/(60*60*24));
  7. $HYear=round($TDays/354.37419);
  8. $Remain=$TDays-($HYear*354.37419);
  9. $HMonths=round($Remain/29.531182);
  10. $HDays=$Remain-($HMonths*29.531182);
  11. $HYear=$HYear+1389;
  12. $HMonths=$HMonths+10;$HDays=$HDays+23;
  13. if ($HDays>29.531188 and round($HDays)!=30){
  14. $HMonths=$HMonths+1;$HDays=Round($HDays-29.531182);
  15. }else{
  16. $HDays=Round($HDays);
  17. }
  18. // COPYRIGHT 2002 BY Ahmed-Samara www.daniweb.com/forums/member173926.html //
  19. if ($HMonths>12) {
  20. $HMonths=$HMonths-12;
  21. $HYear = $HYear+1;
  22. }
  23.  
  24. $datetime = "$HDays-$HMonths-$HYear åÜ";
  25. return($datetime);
  26. }

But the problem in line code PHP, in directional mkTime did not get Vankhn reservists in the asp. Even Get the appropriate number ...

  1. function formatTimestamp(xtime)
  2. ' global $datetime, $locale;
  3. 'ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2}) ([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2})", $time, $datetime);
  4. '$time = mktime($datetime[4],$datetime[5],$datetime[6],$datetime[2],$datetime[3],$datetime[1]);
  5. '// COPYRIGHT 2002 BY Ahmed-Samara www.daniweb.com/forums/member173926.html //
  6.  
  7. TDays=round(xtime/(60*60*24))
  8. HYear=round(TDays/354.37419)
  9. Remain=TDays-(HYear*354.37419)
  10. HMonths=round(Remain/29.531182)
  11. HDays=Remain-(HMonths*29.531182)
  12. HYear=HYear+1389
  13. HMonths=HMonths+10
  14. HDays=HDays+23
  15. if (HDays>29.531188 and round(HDays)<>30) then
  16. HMonths=HMonths+1
  17. HDays=Round(HDays-29.531182)
  18. else
  19. HDays=Round(HDays)
  20. end if
  21. '// COPYRIGHT 2002 BY Ahmed-Samara www.daniweb.com/forums/member173926.html //
  22. if (HMonths>12) then
  23. HMonths=HMonths-12
  24. HYear = HYear+1
  25. end if
  26.  
  27. datetime = HDays & "-" & HMonths & "-" & HYear & " &aring;&Uuml;"
  28. Response.Write(datetime)
  29. end function
  30.  

But the problem in line code PHP, in directional mkTime did not get Vankhn reservists in the asp. Even Get the appropriate number ...
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,249
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 540
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is online now Online
Moderator

Re: CMS - I don't quite get it???

 
0
  #3
Jun 22nd, 2007
What ?

Ignore that last post.

A CMS is an easy way to put information on a website

e.g if it was a news website you dont want to have to make a whole page every time you want to add an article so you use a content management system. A CMS has a database where the content is stored, and it is entered through a nice user interface.
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Mar 2007
Posts: 20
Reputation: MKIII is an unknown quantity at this point 
Solved Threads: 0
MKIII MKIII is offline Offline
Newbie Poster

Re: CMS - I don't quite get it???

 
0
  #4
Jun 22nd, 2007
Ok, so what you're saying is it like a 'template' if you will, to control this? Am I understanding you correctly?
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,249
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 540
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is online now Online
Moderator

Re: CMS - I don't quite get it???

 
0
  #5
Jun 22nd, 2007
Its a dynamic site. A CMS is kind of like daniweb in a way, in that each thread is not a seperate pag but one page where the content is loaded from a database.
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Mar 2007
Posts: 20
Reputation: MKIII is an unknown quantity at this point 
Solved Threads: 0
MKIII MKIII is offline Offline
Newbie Poster

Re: CMS - I don't quite get it???

 
0
  #6
Jun 22nd, 2007
Ok, great. Got it.

I should try one to see how it works.
Last edited by MKIII; Jun 22nd, 2007 at 5:33 pm.
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,249
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 540
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is online now Online
Moderator

Re: CMS - I don't quite get it???

 
0
  #7
Jun 22nd, 2007
a popular PHP / Mysql Based CMS is Joomla
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Mar 2007
Posts: 20
Reputation: MKIII is an unknown quantity at this point 
Solved Threads: 0
MKIII MKIII is offline Offline
Newbie Poster

Re: CMS - I don't quite get it???

 
0
  #8
Jun 25th, 2007
Ok, will check that out.

Can I add now: explain what/how RSS feeds work? Don't quite get that one either. OF shall I start a new thread?
Reply With Quote Quick reply to this message  
Join Date: Mar 2005
Posts: 192
Reputation: stupidenator is an unknown quantity at this point 
Solved Threads: 4
stupidenator's Avatar
stupidenator stupidenator is offline Offline
Junior Poster

Re: CMS - I don't quite get it???

 
0
  #9
Jun 25th, 2007
RSS allow users to 'subscribe' to your site. Basically, if you create an RSS feed for your site, I can go to your site, click on the RSS link, and add it to Google Reader or some other feed reader and then I don't have to come back to your site to check and see if it has been updated. You can update the rss file, which will show up in Google Reader, and then I know that there is something new and I can go to your site to check it out.

I'm probably not explaining this very well, but here is a link to wikipedia, which has a lot of info on the subject.
http://en.wikipedia.org/wiki/RSS_(file_format)
Thanks,

Nick
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the PHP Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC