Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
6
Posts with Upvotes
4
Upvoting Members
6
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~7K People Reached
About Me

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

Member Avatar for nadiam

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 …

Member Avatar for Gaetane
0
3K
Member Avatar for damle1

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!

Member Avatar for Gaetane
0
195
Member Avatar for Gaetane

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; …

Member Avatar for Gaetane
2
2K
Member Avatar for jaymista

##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 …

Member Avatar for mike_2000_17
-1
257
Member Avatar for dany12

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 …

Member Avatar for profmuluka
1
460
Member Avatar for cwarn23

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 …

Member Avatar for Gaetane
4
679
Member Avatar for happygeek

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 …

Member Avatar for Gaetane
4
620
Member Avatar for Nadera

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 …

Member Avatar for Gaetane
0
154
Member Avatar for shelexelex

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... :)

Member Avatar for Gaetane
0
353
Member Avatar for valonesal

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

Member Avatar for Gaetane
0
115

The End.