<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Developing a C.R.U.D. web application by Thomas Bryden</title>
      <link>https://padlet.com/tbryden1/Bookmarks</link>
      <description>This task is about developing a complete C.R.U.D. web application.</description>
      <language>en-us</language>
      <pubDate>2022-01-30 21:33:58 UTC</pubDate>
      <lastBuildDate>2025-04-24 09:56:48 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://www.atatus.com/glossary/content/images/size/w960/2021/07/CRUD.jpeg</url>
      </image>
      <item>
         <title>1 What is C.R.U.D.?</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2866189000</link>
         <description><![CDATA[<ul><li><p>C.R.U.D. stands for Create, Read, Update, Delete</p></li><li><p>C.R.U.D. represents the four basic operations that can be performed on data</p></li><li><p>C.R.U.D. operations are fundamental to interacting with databases in web applications</p></li></ul>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/770e34043d3fc36e18c59e13934d51b7/image.png" />
         <pubDate>2024-01-30 03:09:21 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2866189000</guid>
      </item>
      <item>
         <title>2 What is C.R.U.D.?</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2866189664</link>
         <description><![CDATA[<ul><li><p><strong>Create</strong>: Add new records to database using SQL <strong>INSERT INTO</strong></p></li><li><p><strong>Read</strong>: Retrieve and display records from database using SQL <strong>SELECT</strong></p></li><li><p><strong>Update</strong>: Modify existing records in database using SQL <strong>UPDATE</strong></p></li><li><p><strong>Delete</strong>: Remove existing records from database using SQL <strong>DELETE</strong></p></li></ul>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/cd60602922d640a00d07da08f6bf1671/image.png" />
         <pubDate>2024-01-30 03:10:04 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2866189664</guid>
      </item>
      <item>
         <title>3 Task introduction</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2866191165</link>
         <description><![CDATA[<p>SLC stakeholders have proposed development of a video game rental web application to allow staff and students within the College to rent video games. The new web application must utilise a backend relational database and</p><ul><li><p>allow staff and students to:</p><ul><li><p>browse and rent available video games</p></li><li><p>return rented video games</p></li></ul></li><li><p>allow administrators to:</p><ul><li><p>create, update, and delete user accounts</p></li><li><p>view a list of all rentals (who has what)</p></li></ul></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2024-01-30 03:11:42 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2866191165</guid>
      </item>
      <item>
         <title>4 Relational schema</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2866193711</link>
         <description><![CDATA[<ul><li><p>One user can create many rentals (rent many games) (1:N)</p></li><li><p>One game can be rented many times (1:N)</p></li></ul>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/3ffd08a11e701cecdb3f39edbe2ac4ce/image.png" />
         <pubDate>2024-01-30 03:14:35 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2866193711</guid>
      </item>
      <item>
         <title>5 Open MySQL</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867499719</link>
         <description><![CDATA[<ol><li><p>Open AMPPS.</p></li><li><p>Click the 'home' icon (opens localhost/ampps).</p></li><li><p>Find <strong>phpMyAdmin </strong>and login using below credentials:</p><p>username: <strong>root</strong></p><p>password: <strong>mysql</strong></p></li><li><p>Click the 'SQL' tab in <strong>MySQL</strong>.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/8c958aca209fe16560a6d3c31d5d0f08/image.png" />
         <pubDate>2024-01-30 21:45:01 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867499719</guid>
      </item>
      <item>
         <title>6 Create the database in MySQL</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867502211</link>
         <description><![CDATA[<ol><li><p>Copy and paste the SQL into MySQL to create and populate the VideoGameRental database.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/59c74e1a04b3ae739cf1dc7b405d0f55/SQL.txt" />
         <pubDate>2024-01-30 21:48:45 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867502211</guid>
      </item>
      <item>
         <title>7 File/folder setup</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867504327</link>
         <description><![CDATA[<ol><li><p>On your web server, create a folder 'rentals'. This is where your web application will live.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/76f785381ae77e26035469318b40d2f3/image.png" />
         <pubDate>2024-01-30 21:52:03 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867504327</guid>
      </item>
      <item>
         <title>8 database.php</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867522966</link>
         <description><![CDATA[<ol><li><p>Create a new file in your text editor.</p></li><li><p>Save the file as ‘database.php’ to your web server.</p></li><li><p>Add the code.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/9fa77314d9978bd5d4803f3df340c527/database.pdf" />
         <pubDate>2024-01-30 22:16:52 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867522966</guid>
      </item>
      <item>
         <title>9 login.php</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867542887</link>
         <description><![CDATA[<ol><li><p>Create a new file in your text editor.</p></li><li><p>Save the file as ‘login.php’ to your web server.</p></li><li><p>Add the code.</p></li><li><p>Test the file.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/5eda682a32b77141bf4828a144217811/login.pdf" />
         <pubDate>2024-01-30 22:44:39 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867542887</guid>
      </item>
      <item>
         <title>10 index.php</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867543897</link>
         <description><![CDATA[<ol><li><p>Create a new file in your text editor.</p></li><li><p>Save the file as ‘index.php’ to your web server.</p></li><li><p>Add the code.</p></li><li><p>Test the file.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/889634ab48040d509784cee5f0465f85/index.pdf" />
         <pubDate>2024-01-30 22:46:22 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867543897</guid>
      </item>
      <item>
         <title>11 logout.php</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867644586</link>
         <description><![CDATA[<ol><li><p>Create a new file in your text editor.</p></li><li><p>Save the file as ‘logout.php’ to your web server.</p></li><li><p>Add the code.</p></li><li><p>Test the file.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/0b1c9cb0ef887dfe736a1f28dd78b915/logout.pdf" />
         <pubDate>2024-01-31 00:59:13 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867644586</guid>
      </item>
      <item>
         <title>12 games.php</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867651766</link>
         <description><![CDATA[<ol><li><p>Create a new file in your text editor.</p></li><li><p>Save the file as ‘games.php’ to your web server.</p></li><li><p>Add the code.</p></li><li><p>Test the file.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/b7ded48476d1dedf37a07fbdd5c253b4/games.pdf" />
         <pubDate>2024-01-31 01:06:29 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867651766</guid>
      </item>
      <item>
         <title>14 rentals.php</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867667037</link>
         <description><![CDATA[<ol><li><p>Create a new file in your text editor.</p></li><li><p>Save the file as ‘rentals.php’ to your web server.</p></li><li><p>Add the code.</p></li><li><p>Test the file.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/b0c4a6516adedabd9517dd4318341347/rentals.pdf" />
         <pubDate>2024-01-31 01:21:45 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867667037</guid>
      </item>
      <item>
         <title>13 return.php</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867677008</link>
         <description><![CDATA[<ol><li><p>Create a new file in your text editor.</p></li><li><p>Save the file as ‘return.php’ to your web server.</p></li><li><p>Add the code.</p></li><li><p>Test the file.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/49fe77bd9fdd9dd0c16448e15223f32e/return.pdf" />
         <pubDate>2024-01-31 01:32:21 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867677008</guid>
      </item>
      <item>
         <title>15 accounts.php</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2867682018</link>
         <description><![CDATA[<ol><li><p>Create a new file in your text editor.</p></li><li><p>Save the file as ‘accounts.php’ to your web server.</p></li><li><p>Add the code.</p></li><li><p>Test the file.</p></li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/3034d433df90805d20866730f1584496/accounts.pdf" />
         <pubDate>2024-01-31 01:37:57 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2867682018</guid>
      </item>
      <item>
         <title>Problems need fixing</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2880449548</link>
         <description><![CDATA[<ol><li><p>Style the website.</p></li><li><p>Can rent same game twice?</p></li><li><p>Should teachers be able to approve rental requests?</p></li><li><p>Returned column has 0 or 1, not yes or no.</p></li><li><p>If same game rented twice, returning once triggers both.</p></li><li><p>No navigation bar?</p></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2024-02-12 00:57:30 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2880449548</guid>
      </item>
      <item>
         <title>Complete code</title>
         <author>tbryden1</author>
         <link>https://padlet.com/tbryden1/Bookmarks/wish/2881532604</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1559917167/03e8f550b54d046a64ce2d3cfdb71925/rentals.zip" />
         <pubDate>2024-02-12 22:13:25 UTC</pubDate>
         <guid>https://padlet.com/tbryden1/Bookmarks/wish/2881532604</guid>
      </item>
   </channel>
</rss>
