
dannon
Members-
Posts
70 -
Joined
-
Last visited
Everything posted by dannon
-
Also Doesn't look like line 21.
-
Well, I get no parse errors when I test your code. Make sure that you end all of your statements correctly and make sure that you have your curly braces placed in correct places. Make sure that all of your syntax is correct. Based on what you have posted, I cannot see what is wrong with your code. I should mention that I have replaced the post values in my test to: $departement = 'Informations'; $nom = 5; $courriel = 4; $telephone = 7; $message = 4;
-
I believe your error states that it has found an unexpected '}'. You might have to many '}' somewhere. The code that you have posted doesn't give me any errors.
-
http://lmgtfy.com/?q=comment+box+tutorial+php
- 3 replies
-
- php
- comment box
-
(and 2 more)
Tagged with:
-
You could store the IPs in database and make the IP column unique.
-
This is a help forum, not a teaching forum. I doubt that any of the people who regularly help here are tutors.
-
Thank you! I have created this query: SELECT @count := COUNT(*) AS "count", @min := MIN(id) AS "min" FROM `items` WHERE item_id = 5; DELETE FROM `items` WHERE @count > 5 AND id = @min; Is there a way to make it better?
-
How can I make it so that if there are more than 5 foreign ID's exist in the table, and every time a new foreign ID is inserted, the 6th oldest row gets removed, so I can limit how many rows of the same foreign ID can exist in the database?
-
I'm going to make it so it checks the last 5 cookie tokens from the database instead of the last cookie. Is it possible to make sure that only 5 tokens of 1 user_id exists in the database? Could someone help me rewrite a query for this?
-
I have found that if I remove the PHPSESSID cookie and spam click on a link, the cookie breaks. Has this been causing the issue all along? Are there too many requests sent while the session isn't properly set or something? and the cookie isn't set on the client, while the website thinks it's updated? If so, is it possible to fix this?
-
Yea, I put a dot before the domain for all of my cookies now, I use this: where DOMAIN, is set to my website's domain name (example.com). $domain = ($_SERVER['HTTP_HOST'] == "localhost." ? false : "." . DOMAIN); I have made it so my .htaccess redirects to the URL without the "www.". I have also made sure that my website only redirects to URLs without a www. It still breaks.
-
Bumping for justice! Should I post my website on GitHub and post the URL here? Or my whole site isn't needed?
-
Ah, that's fine. What do you mean by real data? What kind of data do you need?
-
php_flag display_errors on php_value error_reporting 9999 RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^(.+)$ index.php?url=$1 [QSA,L] I make it so the url is like this: example.com/controller/controller_function
-
Based on my testing, I'm guessing that if(ob_get_length()) ob_clean(); will make sure that only the error gets outputted. Here's my test: <?php set_error_handler('errorHandler', E_ALL); echo "test"; throw Exception; function errorHandler($number, $message, $file, $line) { if (ob_get_length()) ob_clean(); $errorMessage = 'Error: ' . $number . '</br>' . 'Message: ' . $message . '</br>' . 'File: ' . $message . '</br>' . 'Line: ' . $message; echo $errorMessage; } ?>
-
Nothing. I just use it to log the user in. The User class is initiated in my Model class. The Model is loaded before my Controller class which collects all of the information and then renders it using the View class. Should I post the whole User class for you? I don't really want to because I think it's badly coded and I don't want to burn your eyes.
-
No, it is not necessary to use frameworks, but they can help you. IDEs are just here to help you write code by highlighting keywords, suggesting code, checking for errors and more. You can code your website in Notepad if you really wanted.
-
Ok, I have placed the session_start() into the constructor of my User class. It makes more sense for me to keep it here. And yes, I have used session_start() in my Bootstrap class which gets called first.
-
Also, as sessions are saved on my web server, wouldn't this waste a lot of space if a lot of people use the remember me? because a lot of sessions would need to be saved? I also cannot find a way to save the session.
-
2. By using an MVC, it will make it a lot easier to manage your website's content. 3. Dreamweaver is an IDE not a framework. I personally hate Dreamweaver for php coding. I use Netbeans and sometimes PhpStorm.
-
Great idea! I was actually trying following this: http://stackoverflow.com/questions/549/the-definitive-guide-to-forms-based-website-authentication/477578#477578 to try and make my login secure. Could you tell me how I can save sessions? or should I just use session_set_cookie_params() and just set it for a month? Also is it possible to make the session ID update once the user revisits the site?
-
I have tried using: header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); Didn't help.
-
Nope, there's nothing wrong with my time checking.
-
Ok, I fixed the PHPSESSIDs by doing this: $domain = ($_SERVER['HTTP_HOST'] == "localhost" ? false : "." . DOMAIN); session_set_cookie_params(0, "/", $domain, false, true); and for some reason the it's still not updating the token cookie on localhost. However it looks like it's working on my domain. I never knew cookies would be such a pain for me. What domain should I use for localhost? I tried false, null and localhost, it seems to cause problems for me. Edit:: nope, still doing it sometimes. Could it be something wrong with my time checking?