Good reference site for MySQL http://www.sqlcourse.com/ http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180190#msg-180190 Thu, 28 Mar 2024 13:09:08 +0200 Phorum 5.2.23 http://osprey.unisa.ac.za/phorum2/read.php?751,180190,183109#msg-183109 Re: Good reference site for MySQL http://osprey.unisa.ac.za/phorum2/read.php?751,180190,183109#msg-183109 I found a pretty good MySQL tutorial for absolute beginers,

WikiHow MySQL

It's on Wiki How, Its shows you how to Create Databases in MySQL Terminal (Command Line), This is actualy easier than the GUI.
Before this Tutorial, I had no @#!*ing clue how to use SQL.
PLEASE check it out if you lost and considering giving up!! :D]]>
78111986Yusuf PHP Sem 2 Tue, 15 Oct 2013 12:19:56 +0200
http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180331#msg-180331 Re: Good reference site for MySQL http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180331#msg-180331
Nothing missing , just a screw loose! Fixed the silly syntax error added the while loop
and now finding the site to be a real time saver. Thanks!]]>
78044545CharlesU PHP Sem 2 Thu, 25 Jul 2013 23:07:42 +0200
http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180297#msg-180297 Re: Good reference site for MySQL http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180297#msg-180297 Mac PHP Sem 2 Thu, 25 Jul 2013 08:58:46 +0200 http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180289#msg-180289 Re: Good reference site for MySQL http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180289#msg-180289 Am I missing a trick or are there no short cuts?

<?php
$user_name="root";
$password="";
$database="moviesite";
$server="127.0.0.1";

$db_handle=mysql_connect($server,$user_name,$password);
$db_found=mysql_select_db($database,$db_handle);

if($db_found){
print "Database Found!";

SELECT movie_type,
movie_name
FROM tb_movie;

}
else{
print "Database NOT found";
mysql_close($db_handle);
}
?>]]>
78044545CharlesU PHP Sem 2 Wed, 24 Jul 2013 22:04:10 +0200
http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180210#msg-180210 Re: Good reference site for MySQL http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180210#msg-180210 72960736 PHP Sem 2 Tue, 23 Jul 2013 16:11:02 +0200 http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180202#msg-180202 Re: Good reference site for MySQL http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180202#msg-180202
one could want to try this as well: http://www.w3schools.com/sql/default.asp]]>
Kayc78145228 PHP Sem 2 Tue, 23 Jul 2013 14:45:10 +0200
http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180190#msg-180190 Good reference site for MySQL http://osprey.unisa.ac.za/phorum2/read.php?751,180190,180190#msg-180190 http://www.sqlcourse.com/]]> Mac PHP Sem 2 Tue, 23 Jul 2013 11:45:26 +0200