gazza52 Posted November 3, 2010 Share Posted November 3, 2010 Hi All, I'm trying to produce a very basic Wiki like feature where you can view an article and then click on say a history link and view the recent changes which have taken place and also roll back to old articles. These articles will simply be Mysql record entries. Please can you assist as I am struggling to find examples of this? Thanks Gary Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/ Share on other sites More sharing options...
The Little Guy Posted November 3, 2010 Share Posted November 3, 2010 you need to save every full version of the document in the mysql table. When you want to check to see what lines are different, you just loop through line by line and compare differences between the lines. - If document A has less lines then document B, then lines were added to get you to B - If document A has more lines then document B, then lines were removed to get you to B Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/#findComment-1130024 Share on other sites More sharing options...
gazza52 Posted November 3, 2010 Author Share Posted November 3, 2010 Hi, thanks for your reply. As its only one article I would be comparing the versions for would it be adviseable to have just one table with different versions of the article and then compare the date it was added so this would then show different versions of edit of the document. I would also tho like to roll back to a previous version of the article I dont think the above method would help? Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/#findComment-1130028 Share on other sites More sharing options...
The Little Guy Posted November 3, 2010 Share Posted November 3, 2010 What I posted would work, since you are save the FULL version of EVERY change. First entry into the database First entry Second entry into the database First entry Another line Another line Another line Third entry into the database First entry Another line Another line lets say your at entry 3, and you want to roll back to entry 2, you would then grab that entry from the database, this would then become entry 4, and the table would look like this: First entry into the database First entry Second entry into the database First entry Another line Another line Another line Third entry into the database First entry Another line Another line Fourth entry into the database First entry Another line Another line Another line You should be able to see that entry 4 and entry 2 are the exact same thing.. Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/#findComment-1130033 Share on other sites More sharing options...
gazza52 Posted November 3, 2010 Author Share Posted November 3, 2010 Hi, Ok I see what you are saying but struggling to know what I need to put into my code to make this possible? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/#findComment-1130038 Share on other sites More sharing options...
The Little Guy Posted November 3, 2010 Share Posted November 3, 2010 what part don't you get? Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/#findComment-1130042 Share on other sites More sharing options...
gazza52 Posted November 3, 2010 Author Share Posted November 3, 2010 I am new to PHP so please forgive me lol. My understanding is I will have a table called articles Article ID/Article Title/Contents/Date Added If i inserted this table in I can obviously have my article in but if I amended it it will delete the previous contents. How do i ammend contents so the previous contents are stored and the version saved? Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/#findComment-1130045 Share on other sites More sharing options...
The Little Guy Posted November 3, 2010 Share Posted November 3, 2010 With article id as an auto increment field, and date added as a timestamp (on insert): mysql_query("INSERT INTO table (title, contents) VALUES ('Article Name', 'This is the first insert')"); mysql_query("INSERT INTO table (title, contents) VALUES ('Article Name', 'This is the first insert, with modification')"); mysql_query("INSERT INTO table (title, contents) VALUES ('Article Name Modified Title', 'This is the first insert')"); This will insert 3 rows into your database, the last row, will be the most current version. so, to select the most current version you want, you just load the last row in the table: mysql_query("SELECT * FROM table ORDER BY id DESC LIMIT 1"); Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/#findComment-1130049 Share on other sites More sharing options...
gazza52 Posted November 3, 2010 Author Share Posted November 3, 2010 I understand how this would work for comparing one article but what about if I wanted to have 3 articles in there? It wouldnt work as the ID would be 1/2/3 etc for article 1 with changes made and then 4/5/6 for article 2 so when comparing say article 1 I would have article 2 in there aswell. Quote Link to comment https://forums.phpfreaks.com/topic/217694-php-versioning/#findComment-1130056 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.