Comment by lfx on How to compile a C++ source code written for Linux/Unix on...
Format code correctly and what errors you are getting?
View ArticleComment by lfx on how to upload .txt files to sql database using asp.net(C#)
Could you be more specific? txt files with sql's in side, witch must be executed, or txt files with some random text inside for storing info only?
View ArticleComment by lfx on can anybody help me with using wp_print_scripts,...
I looked deeper and found that all functions above goes throw one wp_enqueue_script function -> codex.wordpress.org/Function_Reference/wp_enqueue_script
View ArticleComment by lfx on Reading any well-formed RSS/ATOM file using PHP
Sure it is possible :) If you say that you want to read well formated rss/atom feed, first what you want to do is examine rss/atom specifications ( cyber.law.harvard.edu/rss/rss.html /...
View ArticleComment by lfx on zipping file problem on the server PHP
First of all try to error_reporting(E_ALL); then you see all errors which may cause your problem.
View ArticleComment by lfx on jquery refresh php loop?
That function should get all data which you need for page. Like open new page, etc.
View ArticleComment by lfx on Validation is not working
In way you asked I can tell one think - your code does not working ;) Show your code pleas.
View ArticleComment by lfx on Asterisk click to call
Yes, exactly what I needed, not so nice, but works :) Thanks!
View ArticleComment by lfx on PHP syntax error when installing pear on mac OS X 10.6.6
Pleas show your php.ini about 1050 line.
View ArticleComment by lfx on How can I echo HTML in PHP?
@MhdSyrwan just random chars, you can read more here php.net/manual/en/…
View ArticleComment by lfx on Register web.xml listeners using guice servlet module
Very helpful! Just in my case getInjector() is called before contextInitialized(). This is bit odd, but still works!
View ArticleComment by lfx on Grunt wiredep:app no such file or directory bower.json
I got this message this morning too. But for grunt serve. Yesterday it worked without any problems.
View ArticleAnswer by lfx for Worst security hole you've seen?
Web app on IIS, there was no file upload filter. So you could upload exe, and do smf fun ;)
View ArticleAnswer by lfx for Wordpress And Zend
Try this http://blueberryware.net/2008/09/04/wp-library-autoloader-pluginI think all you need is there.
View ArticleAnswer by lfx for C# and MySql integration
May be this links be use full for you, was for me, when I started :)windows-programming.suite101.com and bitdaddys.com
View ArticleAnswer by lfx for How do other development teams approach version numbers?
My company develops product for 19 years, and we have only version - 3. Although we had 1.2, 1.5 and so on. I think this is the best practice.
View ArticleAnswer by lfx for PHP - Drop down list to display .txt contents
This is quick solution, but highly insecure, use it only as example, how could be done, but shouldn't: <?// your page code here// this is body where you want to put song...
View ArticleAnswer by lfx for page not redirecting
You can't echo and print_r or give any other output before function header.
View ArticleAnswer by lfx for PHP: Set Variable to Get Value
if(empty($_GET['swf']) and empty($_GET['name']) and empty($_GET['description']) and empty($_GET['instruction']){/// code here}else{/// and here}
View Article