Why It Makes Sense To Use As Little Fields As Possible In A Database

Why It Makes Sense To Use As Little Fields As Possible In A Database While designing a database table, one of the most common problems is how to translate a complex data type, like a class, to the database. Now, there are multiple ways to do it as will be listed below. Let’s create a class Cars. class Cars { string carMake; string carModel; string carColor; }; And then, the... Read More

How to Fetch Data from an External Database

Code for test.html <div id=”carpoollist”> </div> <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js”></script> <script> var string; string=”http://carpoolfinder.in/webservice.php?Offering=Need”; $.getJSON(string, function(data) { $.each(data, function(i) { $(‘<li class=”ui-btn... Read More

5 minute guide to install PHPMyAdmin

To install PHPMyAdmin on a shared hosting account site such as justhost.com and to access a relevant database, simply follow this tutorial: Download the zip file attached. If you have cpanel access, use the file manager and upload the zip file and then extract it. If you don’t have cpanel access, unzip the folder in your directory and upload it via ftp. Go and watch some videos on... Read More