Updating Large Data in MySQL through front end

A

Anonymous

Guest
i'm prefer to make my own project who will update his data him self =]
 
using a wysiwyg editor will ease the changing of the data in the CMS type of way...

you will need to write your own script for changing the data and saving it to the database...
 
Actually the spaces or quote marks does not let me save this data into the database

addslashes and stripslashes will help :)

there also is mysql_Real_escape_string or something simmilar (dont remember the name of the function)
 
mysql_real_escape_string, you are right, alexei. It escapes every ' or " so there is no problem in inserting them into a db.

Regards.
 
Back
Top