lional Posted October 8, 2007 Share Posted October 8, 2007 Hi All I am looking for a site that can give an outline of coding standards for php and mysql. Thanks Lional Quote Link to comment https://forums.phpfreaks.com/topic/72355-coding-standards/ Share on other sites More sharing options...
The Little Guy Posted October 8, 2007 Share Posted October 8, 2007 http://php.net http://mysql.com Quote Link to comment https://forums.phpfreaks.com/topic/72355-coding-standards/#findComment-364872 Share on other sites More sharing options...
prime Posted October 8, 2007 Share Posted October 8, 2007 http://php.net you may want to pay specific attention to http://php.net/manual/en Quote Link to comment https://forums.phpfreaks.com/topic/72355-coding-standards/#findComment-364931 Share on other sites More sharing options...
Barand Posted October 8, 2007 Share Posted October 8, 2007 Given PHP similarity to C syntax, google came up with this, amongst others http://www.doc.ic.ac.uk/lab/secondyear/cstyle/cstyle.html For MySQL, these are my personal ones [pre] 1 ) Basically, code for readabilty 2 ) Split the query over several lines. Not only is it easier to read (without interminable right scrolling) but if Mysql reports an error it gives the line number in the query which can help find the error 3 ) Use JOIN .. ON syntax to separate structure from selection criteria 4 ) Use table aliases[/pre] Example SELECT e.id as Event, e.title, ed.eventdate, ed.price, p.company FROM events e INNER JOIN eventdates ed ON ed.eventid = e.id INNER JOIN eventproducers ep ON e.id = ep.eventid INNER JOIN producer p ON ep.producerid = p.producerID WHERE ed.evendate BETWEEN NOW() AND NOW() + INTERVAL 14 DAT ORDER BY e.title, ed.eventdate Quote Link to comment https://forums.phpfreaks.com/topic/72355-coding-standards/#findComment-364973 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.