Today I used the Datepicker for Bootstrap. I grabbed the files from the CDN.
Datepicker for Bootstrap
Reply
Today I used the Datepicker for Bootstrap. I grabbed the files from the CDN.
I wanted to know what the analogue for MySQL ‘show tables’ was in PostgreSQL, and I found the answer, use the information_schema, here:
mysql: SHOW TABLES postgresql: \d postgresql: SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'; mysql: SHOW DATABASES postgresql: \l postgresql: SELECT datname FROM pg_database; mysql: SHOW COLUMNS postgresql: \d table postgresql: SELECT column_name FROM information_schema.columns WHERE table_name ='table'; mysql: DESCRIBE TABLE postgresql: \d+ table postgresql: SELECT column_name FROM information_schema.columns WHERE table_name ='table';
Found a list of HTML Singleton Tags, the tags that don’t require a closing tag.
Used call_user_func_array today, in Slib…
Reading about define() vs const…
I needed to know my options for htmlentities character encoding support today. The PHP documentation had everything I needed to know. I ended up adding these constants to my code:
const UTF8_ENCODING = 'UTF-8'; const ASCII_ENCODING = 'ISO-8859-1';
A great article on Wikipedia about Newlines…
Using PHP Output Buffering Control…
Reading about MySQL Integer Types.