PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
Query(Add): INSERT INTO mailing_lists (list_name,list_text) VALUES('slashes','test\\\'test\\\'test' FailedYou have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
INSERT INTO mailing_lists (list_name,list_text) VALUES('".$_POST['list_name']."','".addslashes($stringnew)."'"
//it's wrapped in a small DB function like
db_query("INSERT INTO mailing_lists (list_name,list_text) VALUES('".$_POST['list_name']."','".addslashes($stringnew)."'", 'Add');
//but all other queries work in that manner and i've tried it alone, with same results.