Jump to content

caliux

Members
  • Posts

    39
  • Joined

  • Last visited

Everything posted by caliux

  1. 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.
  2. I think is server, because on a last server it worked and on actual server it doesn't
  3. 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.
  4. Thank you man !
  5. 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!
  6. Hello try this http://www.phpletter.com/Demo/AjaxFileUpload-Demo/, it helped me a lot.
  7. 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.
  8. 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.
  9. Can i use Backtraking to generate password and then use them with cUrl?
  10. 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
  11. Is a good ideea starting learning Zend Framework. I have experience in MVC (CodeIgniter) and also HMVC(CodeIgniter).
  12. Why do you use tables?Tables aren`t good!
  13. 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
  14. 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
  15. 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 }
  16. make a different class for tabs and modify the plugin
  17. try while($row1 = mysql_fetch_array($result1) && $row2 = mysql_fetch_array($result2) )
  18. Active means when user clicks a link
  19. 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>
  20. Something simple http://www.php.net/manual/en/book.geoip.php
  21. You can use a jQuery event $('#list').change(function(){ your ajax function});
  22. Try firefox web developer console or firebug
  23. If you want attribute try $('#form').attr(); not attribute
  24. This you should have learned at Math Javascript.Try that number.toFixed(2);
  25. Try Javascript for dummies written by Emily Vander Veer
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.