Setting php session variable on checkbox click
Using jquery we can set php session variable which is quite handy You would definitely put some input validations Html...
Using jquery we can set php session variable which is quite handy You would definitely put some input validations Html...
In Mysql LIMITÂ is used to limit query results For example SELECT * FROM Employees LIMIT 50 will output first...
For splitting a string use Split on strings like string url = "http://www.memorypointer.com"; string tokens = url.split('.'); tokens will output...
Mysql provides an easy to use function to convert string to date/datetime STR_TO_DATE(string, format) Example SELECT STR_TO_DATE('01/12/2012', '%d/%m/%Y') Output 2012-12-01