Tagged Questions

4
votes
7answers
224 views

What data formats can AJAX transfer?

I'm new to AJAX, but as an overview I'd like to know what formats you can upload and download. Is it limited to JSON or XML or can you even send binary types like MP3 or UTF-8 HTML …
2
votes
3answers
141 views

My PHP app needs to export to a range of different XML formats: should I use XSLT or native PHP?

My PHP application will need to be able to export to (and import from) a range of different data formats, mostly XML based. I have the option of In PHP, use DOM to export to som …
1
vote
3answers
130 views

Ensuring contact form email isn’t lost (python)

I have a website with a contact form. User submits name, email and message and the site emails me the details. Very occasionally my server has a problem with it's email system and …
3
votes
2answers
211 views

How to represent date and/or time information in JSON?

JSON text (RFC 4627) has unambigious representation of objects, arrays, strings, numbers, Boolean values (literally true or false) and null. However, it has nothing defined for rep …