hi all..
i'm using mysql with php4 to develop an online ordering system.

the problem:

when it comes to save, retrieve/view and update data into mysql database, it
takes a long time for the page to load.
the problem occurs after we insert / key in data ( a lot types of data ), after
we click the 'save' or 'edit' button. it also happens
when there are many records to be loaded into the page for viewing.

is it because of mysql has to deal with lots of data to be saved into the
database? plus, i also did some checking before
inserting the data since i am using some radiobuttons in the form. for example:

<?
     if($das_max_both == '1')
     {
          mysql_db_query($dbname,"update sbp set das_max_both =
'$das_max_tweb'",$dblink);
     }

?>

$das_max_both is a radiobutton and returns value '1' if it is checked.
$das_max_tweb is a textfield that will carry an inserted value by the user.

i have a number of this type of checking in my codes.

or is there any other simpler way to perform the data insertion and checking
especially when it comes to insert, update and view?

thanks..

-lisa-



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to