Hi all, Is there any php code which allow me to delete "value of field of database" with reservation of the rest values and make that deleted field just empty but still there
You just need to update the field so that its new value is "". myql_query('UPDATE table SET column="" WHERE column=whatever ') or die(mysql_error()); PHP:
you might be expecting a php function that does it, since you want to modify the database a query should be executed in doing so..