- Upvotes Received
- 5
- Posts with Upvotes
- 5
- Upvoting Members
- 5
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
I've been working around computers most my life, I'm now a developper and an IT tech.
7 Posted Topics
Re: If I may, it's not a good practice to use $_POST directly. You should use something like $from = filter_input(INPUT_POST, "from"); $to = filter_input(INPUT_POST, "to"); Read more about filter_input : [https://www.php.net/manual/fr/function.filter-input.php ](https://www.php.net/manual/fr/function.filter-input.php) There are filters you can apply to make sure the values you receive is what you intend and … | |
Re: This is rather odd indeed... Looks to me as StackOverflow spent a lot of money to get favorable placement. I may be mistaken because search engine placement is not really my strong suit, it's not one of my suits at all actually (lol)... Keep up the good work though. | |
Re: As far as I can tell the SendMessage function that changes the state (and thus the colour) of your ProgressBar is what causes the bar to not fully display. When I commented it out the bar fully filled but, of course, was no longer red "error". As for centering your … | |
Re: As an exemple of how a switch/case works this is a good snipet. But as an exemple of how to carry values over the URL this is grossly assuming that the PHP configuration is pretty permissive. In 2005 PHP allowed values to be converted automaticaly from $_GET["abc"] to $abc or … | |
Re: I agree with JorgeM here. Please be more specific. In your editor you should also have access to help files and exemples. Try write the code and come back with what you have tried and specific questions. I'm looking forward to seeing the results. | |
Re: As far as I know this book is not availlable to read online. Google Books lists other books about OpenGL, one title OpenGL SuperBible: Comprehensive Tutorial and Reference and this one you can read online. This might help. | |
Re: Hi, First to address the database error. I'm not seeing **mysql_connect** anywhere in the code above. Is the database call made into config.php? You might want to rewrite that since mysql_connect and related functions are deprecated. [Click Here to read more about that](http://www.php.net/manual/en/function.mysql-connect.php) Also you're not providing the initial HTML … |
The End.