Forum: MySQL Feb 23rd, 2006 |
| Replies: 6 Views: 5,945 Why not help her solve the problem here? If so then everyone else will have the opportunity to see the solution and learn something... |
Forum: MySQL Apr 22nd, 2005 |
| Replies: 3 Views: 5,522 Do you have the GUI MySQL Administrator? If not download (http://dev.mysql.com/downloads/administrator/1.0.html) it.
Log in to the Administrator. On the left side choose startup variables. Then... |
Forum: MySQL Apr 19th, 2005 |
| Replies: 4 Views: 3,842 Are you using a scripting language to send the query? Like php or asp? If so you will need to post the code you are using to submit the query. |
Forum: MySQL Apr 1st, 2005 |
| Replies: 1 Views: 14,016 You can escape problematic characters with \ so to have a % inserted into the database it would have to look like \% in the query. You can read more about it here... |
Forum: MySQL Mar 24th, 2005 |
| Replies: 5 Views: 2,340 Post your origional php code for the query. |
Forum: MySQL Mar 3rd, 2005 |
| Replies: 12 Views: 5,773 You can get phpMyAdmin here: http://www.phpmyadmin.net/home_page/index.php
Dance |
Forum: MySQL Mar 1st, 2005 |
| Replies: 2 Views: 3,548 Hmm looks like your permissions are wrong. You will need to use chmod to give the webserver access to the files in your script. Chmod 755 will probably be good, if that doesn't work go 777. If you... |
Forum: MySQL Mar 1st, 2005 |
| Replies: 12 Views: 5,773 Hopefully the host that charges more is providing a much better server and really high bandwidth...... As Gary noted mysql is open source and free to use.
My suggestion is to rent a dedicated... |
Forum: MySQL Feb 27th, 2005 |
| Replies: 4 Views: 2,659 So... you realize you are trying to use 2 databases??
for command == "init" you have: mysql_select_db("kevinsmi_game")
for command == "update" you have ... |