lonebyrd
Mar 22 2006, 06:16 AM
| | I installed a program called EasyPHP because it was an easy install and I wanted to be able to learn php and still be able to down the road learn MySQL. But I can't figure out how to use MySQL. Does anyone out there use this program that could tell me alittle about it. Alot of the product site is written in a different language, but everything on the program is english so that is good. Any help would be appreciated. |
Reply
minnieadkins
Apr 1 2006, 01:15 AM
The bundle should have installed mysql with the software. One way of checking is to create a new file, and see if everythings set up in your php.ini settings. Simply put this file in the /www/ directory that your localhost (127.0.0.1) points to. CODE <?php phpinfo(); ?>
Scroll down through it and see if mysql has a section in there. If so, php is configured. You can also look through your services to see if mysql has been installed on your system. Start->Run->services.msc Scroll through that and see if mysql is running (or look in your processes by using alt+ctrl+delete). After that you're probably in business. It would have asked you for a user name and password for mysql database, just use those when you access it. If you're not very strong in SQL, I would recommend finding a package that has phpMyAdmin with it so you can have a GUI and very friendly environment to work with. Here's a list of other packaged web servers. QUOTE FoxServ http://www.foxserv.net/portal.php-FoxServ is an Apache / mySQL / PHP installer package for Windows. FoxServ features the latest version of all included pacakges, user defined configuration during installation, PHP as a module, PEAR, and the Zend Optimizer Fire Pages http://www.firepages.com.au-Large number of installer packages, always with the latest and greatest version of PHP, Apache, MySQL, phpMyAdmin etc. Usually has news/installing programs for Beta versions as well. PHP Triad For Windows http://sourceforge.net/projects/phptriad-An installer of Apache, MySQL and PHP for Windows AppServ http://academic.cmri.ac.th/appserv/-An automatic installation of PHP, MySQL, Apache, phpMyAdmin, PHP-Nuke. Taken from http://www.flash-db.com/Board/index.php?bo...y;threadid=2926If you're wanting to learn sql then I suggest http://www.htmlgoodies.com/beyond/php/ and scroll down to where you see the introductory to databases. There's better resources, but you should be able to understand these tutorials/primers well enough to get the jist of everything. Once you get the hang of it you can try more advanced guides.
Reply
jlhaslip
Apr 1 2006, 01:20 AM
Google on xampp. It is a bundled package containing Apache, Mysql, Php, Perl, phpadmin , mercurymail, and a whack of other stuff. I installed it about a month ago. No problems.
Reply
Houdini
Apr 1 2006, 02:01 AM
Yes I agree XAMPP is great I have been using it for at least three years now WAMP is also good, I do not know alot about easyphp but to test your MySQL install, since apparently you have not made any changes to your MySQL server yet copy and place this in your web root directory if it is www then put it there, or the place where you placed the phpinfo code earlier mentioned. This file will connect to your MySQL server and show its status. Name the file mysql.php as shown in the comment of the file then point your browser to your localhost and that file and you should see a table with all kinds of stuff about your MySQL install, or you will get an error. CODE <html> <head> <title>Test MySQL</title> <body> <!-- mysql.php --> <?php $host="localhost"; $user="root"; $pass=""; mysql_connect($host,$user,$pass); $sql="show status"; $result=mysql_query($sql); if($result==0) echo("<b>Error ".mysql_errno().":" . mysql_error() ."</b>"); elseif(mysql_num_rows($result)==0) echo("<b>Query executed sucessfully!</b>"); else{ ?> <!-- Table that displays the results --> <table border ="1"> <tr><td><b>Variable name</b></td><td><b>Value</b></td></tr> <?php for($i=0;$i < mysql_num_rows($result);$i++){ echo("<tr>"); $row_array = mysql_fetch_row($result); for($j=0;$j < mysql_num_fields($result); $j++){ echo("<td>".$row_array[$j]."</td>"); } echo("</tr>"); } ?> </table> <?php } ?> </body> </html>
Reply
Chesso
May 27 2006, 11:54 AM
There's nothing wrong with EasyPHP at all, I use it for testing and even for some users to access tests of some of my site and general script building. It has PHP, MySQL, Apache and PHPMyAdmin all bundled and is quite easy to use. Once you have EasyPHP started try going to http://localhost in your browser. If you are building up a site try putting it into the WWW folder of EasyPHP for example: PathToEasyPHP/WWW/YourSite. If you have an index.htm, .html or .php then just simply put in your browser http://localhost/YourSite and it should go directly to the main page. This way you can also have many different sites set up. If you need any help learning PHP and MySQL I might be able to help you out, I'll also keep an eye out for some good sites for learning, search Google for PHPFreaks, I visit there quite often and they are very helpful. EDIT: Also if you do end up learning PHP, do some searching on the include command of PHP it is very usefull, much like using borderless iframes but it injects the source of the file directly at that point.
Reply
Recent Queries:--
easyphp look mysql - 4.02 hr back. (1)
-
easyphp database mysql - 16.21 hr back. (1)
-
connecting to sql server in easyphp - 22.10 hr back. (1)
-
place mysql in easyphp - 23.29 hr back. (1)
-
access mysql database in easyphp - 50.10 hr back. (1)
-
access mysql in easyphp - 50.22 hr back. (1)
-
using mysql and easyphp - 50.72 hr back. (1)
-
how to login to mysql easyphp - 50.87 hr back. (1)
-
easyphp mysql - 17.17 hr back. (4)
-
easyphp mysql - 53.99 hr back. (3)
-
how to use easyphp - 67.86 hr back. (1)
-
mysql easyphp connecting configurations - 70.77 hr back. (1)
-
connecting mysql and easyphp website - 71.33 hr back. (1)
-
easyphp access problem - 71.72 hr back. (1)
Similar Topics
Keywords : mysql, easyphp, users, program
- Constraints Don't Work In Mysql?
(11)
How To Increment A Mysql Field At Regular Intervals?
(4) I need an operation that involves increasing the MySQL field value of all records by 1 every 15 or
30 minutes. Since hundreds or thousands of records are present, there must be an automatic
script/program that can do this. Think in terms of game sites which increase your army/gold every
update. Basically I'm doing the same thing. How do I setup my database/table to do that?....
Help Looking Up Users.
I need some help with looking up users. (4) OK so can anyone show me a file that will connect to an sql server with an user inputed quary? So
here is an example of what I want to do: You go to a page to find information about James, you would
type in example.php?user=James and the page would find all the data about James (all the tables),
then display it as an echo. I already have my users set as unique variables so only one person's
information would be echoed. The page name and "user" variable doesn't matter. Do you understand
me? I am having trouble explaining it. If someone could show me a code that do....
Random MySQL Entry
(1) I am tring to figure this out and I can't. When you set a primary key. Say something_id and it
is defined as a int (12) auto_inc. I go and fill it up with 10 entries, meaning it is now set to be
something_id entry 10, but say I go and delete entry 5. Why doesn't it take that 5 for the next
number, but instead it does a 11 and leaves 5 blank. How might I get it to where it fill's up
the 5 instead of going to the next number or is that just one of the bad thing's of having a sql
entry auto_inc ? Also, the random part. The reason I ask this is I take the....
A Simple Query For Those That Know
I have users that want to do the below: (2) I Make ported mods for the PHP-Nuke and this means first of all I need to change the prefixes to al
the tables that are in the phpbb database, because Nuke uses the prefix of nuke (of course) but
there are nuances such as the users table in nuke is just nuke_users Let me start again, all phpbb
or phpbb2 tables as created by the install unless changed by the user in the config.php file are
phpbb_forum this or phpbb_users that but nuke has other tables in its database structure the data in
those table by whatever name remains the same nuke_users has exactly the same str....
Looking for mysql, easyphp, users, program
|
|
Searching Video's for mysql, easyphp, users, program
|
advertisement
|
|