Jump to content
xisto Community
Sign in to follow this  
iGuest

what is MySQL?

Recommended Posts

ah ok, so kind of like HTML?  
that answers the first question, what about the eother 2?

and how do I use it? and what is it used for?


You don't use HTML you use either PHP or Perl.

You use it via SQL (SQL = Structured Query Language) querys with PHP or PERL. It can be used to store information to be used to present something. The best example is of this phpBB, which stores all the posts and users on an MySQL database.

A example of the syntax for using it within PHP would be:

$connection = @mysql_connect("localhost", "database user", "database password") or die(mysql_error());$db = @mysql_select_db($db_name, $connection) or die(mysql_error());$sql = "SQL query here";$result = @mysql_query($connection, $sql) or die(mysql_error);

Share this post


Link to post
Share on other sites

ah ok, so kind of like HTML?  
that answers the first question, what about the eother 2?

and how do I use it? and what is it used for?


You don't use HTML you use either PHP or Perl.

You use it via SQL (SQL = Structured Query Language) querys with PHP or PERL. It can be used to store information to be used to present something. The best example is of this phpBB, which stores all the posts and users on an MySQL database.

A example of the syntax for using it within PHP would be:

$connection = @mysql_connect("localhost", "database user", "database password") or die(mysql_error());$db = @mysql_select_db($db_name, $connection) or die(mysql_error());$sql = "SQL query here";$result = @mysql_query($connection, $sql) or die(mysql_error);

ah..ok, that's understandable. I think I got it now. Thanks 8)

Share this post


Link to post
Share on other sites

ok i dont exactly know what myql is or does. bt your making it seem like this is the first time you;ve heard of it. but how does the admin Amoderator people that dont know how to even use the cpanel dont yous suppose to know some technical stuff?

Share this post


Link to post
Share on other sites

well, I sortof knew what it was, but I don't think that EVERYONE knows EVERYTHING about the cPanel. So the best way to know is to ask. :D 8)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.