Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 8 of 8
Search took 0.85 seconds.
Search: Posts Made By: mbenson
Forum: Ajax and Design 04-10-2009, 07:04 PM
Replies: 1
Views: 1,067
Posted By mbenson
help with Ajax calls.

I hope this is the right spot for this..

I have 2 Select boxes on a page, and each one is calling to a separate function to get data from a MySQL table. Individually they work fine. When I have...
Forum: MySQL 01-02-2003, 09:04 PM
Replies: 2
Views: 693
Posted By mbenson
you can also use 1- mysqladmin -h myhost -u...

you can also use

1- mysqladmin -h myhost -u root -pmypass create dbname
creates the database

2- mysql -h myhost -u root -pmypass dbname < file/location/db.sql
to import the tables into the...
Forum: MySQL 12-03-2002, 02:28 PM
Replies: 12
Views: 1,935
Posted By mbenson
wouldn't it be better to say: SELECT *...

wouldn't it be better to say:


SELECT * FROM table WHERE column != '';


??

Saying that WHERE column is NOT NULL...
Forum: MySQL 12-03-2002, 02:14 PM
Replies: 2
Views: 1,820
Posted By mbenson
Re: Alter Table

Try not telling it to use mediumtext (1000). MySQL uses that type column as a field up to 16.8MB (16000000 chars or something).

just use:
ALTER TABLE fm CHANGE suggestion suggestion MEDIUMTEXT;
Forum: MySQL 12-03-2002, 02:09 PM
Replies: 6
Views: 4,242
Posted By mbenson
If you are really concerned about that, then you...

If you are really concerned about that, then you could simply run these commands to "reset" that column. Simply put:

ALTER TABLE table_name DROP COLUMN column_name;

ALTER TABLE table_name ADD...
Forum: MySQL 12-03-2002, 01:58 PM
Replies: 11
Views: 1,595
Posted By mbenson
I like $result=mysql_query($sql); if...

I like


$result=mysql_query($sql);

if (!$result) {
echo("<p>Error in query: " . mysql_error() . "</p>");
exit();
}
Forum: General web building 09-11-2002, 02:08 PM
Replies: 2
Views: 913
Posted By mbenson
I'm pretty sure that NN doesn't support it...

I'm pretty sure that NN doesn't support it (before 6.2). The best thing you can do, in my opinion, is to make it look as neet as possible in all browsers. I got this, and it looks alright accross,...
Forum: General web building 09-10-2002, 07:54 PM
Replies: 4
Views: 1,109
Posted By mbenson
Angry I would leave you site right then and there. I...

I would leave you site right then and there. I had no control over that, and it's a huge problem for me. You could be offering me a great deal, and I wouldn't have seen it because I looked at the...
Showing results 1 to 8 of 8

 
Forum Jump

All times are GMT +1. The time now is 08:46 AM.