
caliux
Members-
Posts
39 -
Joined
-
Last visited
Everything posted by caliux
-
Hello, I must make a search by date, last 5 days, last 15 days, how can make that, and also how should I insert in database the date, thank you, I have no ideea.
-
I think is server, because on a last server it worked and on actual server it doesn't
-
Hello, I had some problems with my last hosting, not working some functions like file_get_contents. I chose to move at another server. Anyway hosting is free. But at this server, .htacces isn?t working, and I get a bad error and can?t find cause. I?ll post some details about server Apache version 2.2.16 PHP version 5.3.8 MySQL version 5.1.56-log Architecture x86_64 Operating system linux Now my .htacces <IfModule mod_rewrite.c> # allow_override On # mod_rewrite is installed RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d <IfModule mod_php5.c> RewriteRule ^(.*)$ http://www.calinsprojects.info/jack/index.php/$1 [L] </IfModule> <IfModule !mod_php5.c> RewriteRule ^(.*)$ http://www.calinsprojects.info/jack/index.php/$1 [L] </IfModule> </IfModule> Bad error Parse error: syntax error, unexpected $end in /home1/caliux/public_html/jack/application/controllers/site on line 1 Please help me.
-
Hi everyone, I'm looking to change my host. At the moment I have free from awardspace.com. Do you know any free hosting service where I can get access to php.ini and be able to use codeigniter + .htaccess. I want a free hosting. Do you know ?Please post here!
-
Hello try this http://www.phpletter.com/Demo/AjaxFileUpload-Demo/, it helped me a lot.
-
Try some Javascript functions is_numeric(), is_string, form_input_is_string(). If this doesn`t work try to find the first digit with ASCII.
-
Ok I found an website where you must type just password. And I want to make a page, which makes a lot of combinations using backtraking.Something like brute force. And I need something to connect with that password. For this I`m asking, if cUrl cand do this for me. I generate password cURL test it.
-
Can i use Backtraking to generate password and then use them with cUrl?
-
HMVC, makes the work in a team more easy. Every member of a team works at different modules and then just assembly them is a very good creation. Anyway that means that I also should learn about CakePhp, Symfony
-
Is a good ideea starting learning Zend Framework. I have experience in MVC (CodeIgniter) and also HMVC(CodeIgniter).
-
Why do you use tables?Tables aren`t good!
-
A database,or a .txt file,where you keep time when user logged in and when logged out,if the user is logged in you don`t permit to another person to log on that account
-
There are 2 ways,one using AJAX(asincron javascript and xml) or using pure php in your javascript code,that cand be confuse,because you must have patience with the code
-
here you should write something else for redirect if($errorMessages) { ?> <p>Errors were found on the form.</p> <ul> header("Location: yourpage.php"); </ul> <p><input type="button" value="Back" onClick="history.back()"></p> <?php }
-
try while($row1 = mysql_fetch_array($result1) && $row2 = mysql_fetch_array($result2) )
-
Active means when user clicks a link
-
For example <ul id="topnav"> <li><a href="index.php" style="background:red"><span>Home</span></a> <li><a href="menu.php"><span>Our Menu</span></a> <li><a href="locations.php"><span>Locations</span></a> <li><a href="about.php"><span>About Us</span></a>
-
How do I block visitors from certain countries?
caliux replied to doubledee's topic in Apache HTTP Server
Something simple http://www.php.net/manual/en/book.geoip.php -
You can use a jQuery event $('#list').change(function(){ your ajax function});
-
Try firefox web developer console or firebug
-
Rounding price result to 2 decimal places
caliux replied to DarnStuckAgain's topic in Javascript Help
This you should have learned at Math Javascript.Try that number.toFixed(2); -
Try Javascript for dummies written by Emily Vander Veer