HttpSetResponseCode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 16: Line 16:
==Example==
==Example==
<section name="Server/HTTP" class="http" show="true">
<section name="Server/HTTP" class="http" show="true">
Incomplete.
This example displays a 'Page not found' error message and the response code 404.
<syntaxhighlight lang="lua">[html]<html>
<h1>Page not found!</h1>
<* setResponseCode ( 404 ) *>
</syntaxhighlight>
 
</section>
</section>



Revision as of 17:18, 27 October 2007

This function sets the HTTP status code that will be sent for the current HTML page.

Syntax

bool httpSetResponseCode ( int code )

Required Arguments

  • code: the HTTP status code to be set.

Returns

Returns true if the code was set successfully, false otherwise.

Example

Click to collapse [-]
Server/HTTP

This example displays a 'Page not found' error message and the response code 404.

[html]<html>
<h1>Page not found!</h1>
<* setResponseCode ( 404 ) *>

See Also

These functions can only be used from within lua blocks in HTML pages hosted by the server