| bio | website | padelengine.com |
|---|---|---|
| location | Madrid, Spain | |
| age | 27 | |
| visits | member for | 2 years, 3 months |
| seen | yesterday | |
| stats | profile views | 148 |
|
2d |
comment |
Yii framwork creating and validating form input fields Awesome! I didn't know about activeEmailField() :) |
|
May 12 |
comment |
Error after execution of this script? I have just copy/pasted your code and it's working fine. Is that your whole PHP file? |
|
May 10 |
comment |
Accessing HTML unordered list elements in PHP Yes, but that's inherit of a server side language, as it is not able to see HTML content after it has been rendered. If you want that to be dynamic, you should be using either pure JavaScript or send an AJAX request to your back-end. Regarding to your particular case, you should send the variable previously ordered in JavaScript to PHP. |
|
May 9 |
comment |
Good Programming Practices With PHP With Concatenating HTML It's not a good practice to mix your PHP logic with your HTML if you don't want to end up with a spaghetti code mess. You should use PHP in HTML to print dynamic values and control structures: php.net/manual/en/control-structures.alternative-syntax.php. |
|
May 9 |
comment |
Pick 2 items with same contestId from multidimensional array See my edit please. |
|
May 9 |
comment |
Preserving fragment state @YoannHercouet I did and I didn't see any difference. Also, that method is not allowed on subfragments. |
|
May 9 |
comment |
Preserving fragment state But the actual question is, do I need to re-create each Fragment when the user tries to open that section? |
|
May 9 |
comment |
Preserving fragment state @Luksprog I did thought about a solution in that direction, but it seems a little bit unnatural: I would have to save map coordinates, if the user did change the initial city among other stuff, and then retrieve it by myself. Anyway, if it doesn't exist a solution where the entire Fragment is restored, I think I will have to go that way. |
|
May 9 |
comment |
Preserving fragment state @kingori yes, I am using getChildFragmentManager() inside FirstManager. |
|
May 9 |
comment |
Facebook App with dynamic domains What does your plugin do and how does the domain interact with it? |
|
May 8 |
comment |
Get IMG SRC info to show image If you only need the images, then that code should do it. |
|
May 8 |
comment |
Get IMG SRC info to show image It will raise a php warning but it will work, that's why the second line is using the @ error suppression operator. You can try without the @ and see by yourself. |
|
May 8 |
comment |
Get IMG SRC info to show image @derekshull see edit. What that snippet of code does is search a img tag inside $content, and extract its src attribute. |
|
May 8 |
comment |
return value after callback function Not Working What's happening is that the success callback is being called when, and only when, the ajax request has finished (and succeeded). You need to understand that you are making an asynchronous request, therefore your success callback is being called after return flag;. |
|
May 8 |
comment |
forge.topbar.setTint(); Changing the color of the apps topbar Try with forge.topbar.setTint([255,0,0,50], function() {console.log('Success!');}, function(content) {console.log('Error:'+content);}); and open your browser console to see output. |
|
May 8 |
comment |
forge.topbar.setTint(); Changing the color of the apps topbar Did you try to pass success and error callbacks too, to see what's happening? |
|
May 8 |
comment |
how to link a database item to a link If I am understanding what you say, you need is to add the job id to the form itself, via <input type="hidden" name="job-id" value="<?php echo $_GET['id']; ?>, so when the user submits the form you have both user data and the job which he has applied to. Later you can get all applications for each job by SELECT * FROM application_table WHERE job_id = :job_id |
|
May 7 |
comment |
Interact with web page using javascript injection in a Safari Extension @Tokke make sure that the third line you use aspnetForm instead of m_Content_submitbtn2. Otherwise you are trying to 'submit the button' instead of the actual form. |
|
May 6 |
comment |
Interact with web page using javascript injection in a Safari Extension You are welcome. If the answer solves your problem, don't forget to mark it as valid answer by clicking on the tick next to it ;) |
|
May 2 |
comment |
Is my PHP function efficient? Can I make it query the database faster? As Matthew pointed out, you should take care of security holes in that code. php.net/manual/en/security.database.sql-injection.php |