Voting

: one minus one?
(Example: nine)

The Note You're Voting On

divinity76 at gmail dot com
5 years ago
if you need a response code not supported by http_response_code(), such as WebDAV / RFC4918's "HTTP 507 Insufficient Storage", try:

<?php
header
($_SERVER['SERVER_PROTOCOL'] . ' 507 Insufficient Storage');
?>
result: something like

HTTP/1.1 507 Insufficient Storage

<< Back to user notes page

To Top