- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 6
- Posts with Upvotes
- 4
- Upvoting Members
- 6
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
If you keep in line, all will be fine. But if you step out, it is way more fun and you don't have to rhyme anymore...
- Interests
- Lots and lots of things. Currently the use of technology (with focus on software) in rural African development.
- PC Specs
- Shame. It is a sad little laptop, but I love my Hildegard so.
10 Posted Topics
Re: Hmmm... It is a bit tricky to solve javascript and ajax problems. I tested out your code and made sheets.php <?php var_dump($_POST); ?> The ajax response is perfect, so I don't think the problem lies with the code. What you can try and do is, in Google Chrome, right click … | |
Re: You should look into jQuery's Chosen plugin. It's my new best friend. :) http://harvesthq.github.io/chosen/ There are also a lot of solutions [here](http://stackoverflow.com/questions/12223497/html-dropdown-list-with-user-input-field) that might help including the combo-box idea. More about combo-boxes [here](http://www.scriptol.com/html5/combobox.php). Good luck! | |
This started out as `I love PHP traits! I'm going to use them everywhere! ^_^` and now it has turned into a `Thought Exercise / Learning Experience >_<`. Consider the following example: trait TheErrorOfYourWays{ public function booboo(){ echo 'You had a booboo :('; } } trait SpectacularStuff1 { use TheErrorOfYourWays; … | |
Re: ##I say "do it!"## Why? Because life is short. Do the things **you** want to do (even if they make no sense to anyone else) because when **you** die ain't nobody standing there with **you**... unless maybe a whole lot of you died at once... I'm not really sure how … | |
Re: Well, I'm glad you asked... *takes deep breath*... ^_^ Personally, I think it comes down to what the web is for. In my opinion the web is about sharing information as quickly as possible, as easily as possible and by as many people as possible\*. PHP seems to be the … | |
Re: To help anyone else with this problem:> It depends which version of the code you were trying and on other variables like (not sure, not really my field of expertise) CPU usage at the time, CPU capabilities, RAM available, etc. What PHP is telling you is that it was not … | |
Re: First rule of PHP (Web Development): "Never trust no-one, no how, not ever. Never. Ever, ever, ever. Ever." I sanitize everything to the highest level required coming in and going out. Plus I use [PDO](http://php.net/manual/en/book.pdo.php) for database access. And I'm a ruthless tag stripper. If anyone needs <script> they can … | |
Re: Hi Nadera :) Unfortunately, I'm not sure what the problem is. Are you getting error messages? Is the MYSQL not updating? A bit of information about that would help me alot. Then about hiding the approve/decline options until the first manager approves, I am unsure about what you mean. Could … | |
Re: As the previous members suggested, something like this for example: <?php if (isset($_POST['submit'])){ $name= $_POST['name']; $age= $_POST['age']; foreach($array as $name=>$age){ // After proper sanitising of course :P $_SESSION['my_values'][$name]= $age; } print_r($_SESSION['my_values']); } ?> I am but a poor noob, please forgive me if the formatting isn't right... :) | |
Re: Three years later... Just in case anyone else gets here, I found this page: http://nodsw.com/blog/leeland/2010/09/20-semi-safe-html-tags |
The End.