Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
Undefined index?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="brsy" data-source="post: 101940" data-attributes="member: 2912"><p>That basically means that a $_POST or $_GET variable is not defined. The easiest way to fix it is to go through the page, and add a <strong>@</strong> in front of it. Here's an example.</p><p>[PHP]$_POST['error'];</p><p>//the above should be changed to...</p><p>@$_POST['error'];</p><p>// the @ basically makes that variable not return any errors.[/PHP]</p></blockquote><p></p>
[QUOTE="brsy, post: 101940, member: 2912"] That basically means that a $_POST or $_GET variable is not defined. The easiest way to fix it is to go through the page, and add a [B]@[/B] in front of it. Here's an example. [PHP]$_POST['error']; //the above should be changed to... @$_POST['error']; // the @ basically makes that variable not return any errors.[/PHP] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Undefined index?
Top