www.webdeveloper.com

Search:

Type: Posts; User: chrisranjana

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. have you tried printing $_SESSION['login'] ?

    have you tried printing $_SESSION['login'] ?
  2. Replies
    3
    Views
    696

    Is there a specific screen resolution in which...

    Is there a specific screen resolution in which you would like us to test your website ?
  3. Replies
    6
    Views
    567

    Where is the array $numerals defined ?

    Where is the array $numerals defined ?
  4. Replies
    15
    Views
    2,705

    namecheap is ok too.

    namecheap is ok too.
  5. foreach($FILES['photo']['tmp_name'] as $photo) { ...

    foreach($FILES['photo']['tmp_name'] as $photo) {

    should be

    foreach($_FILES['photo']['tmp_name'] as $photo) {
  6. Maybe you could tie up with some kind of an...

    Maybe you could tie up with some kind of an international escrow service.
  7. Replies
    6
    Views
    866

    javascript

    <html>
    <head>
    <script type="text/javascript">

    function clicked()
    {

    alert('button clicked');

    }
  8. Replies
    4
    Views
    877

    On second thoughts I guess you need to update...

    On second thoughts I guess you need to update the `lastused` column ONLY when a person comes up in the search result as a manager on call for that day, since anyway the unavailable users are...
  9. Replies
    4
    Views
    877

    Maybe have another table column `lastused` and...

    Maybe have another table column `lastused` and save the timestamp

    1)whenever someone indicates they are NOT available
    2)After a particular Name is shown in the search result.

    Then every time...
  10. Most of the Right Hand Side variables in the...

    Most of the Right Hand Side variables in the function startFight() seems to be undefined ?
  11. Replies
    4
    Views
    577

    This could help you...

    This could help you http://php.net/manual/en/function.substr.php
  12. Replies
    3
    Views
    597

    You mean something like amazon dot com's SHOP BY...

    You mean something like amazon dot com's SHOP BY DEPARTMENT menu ?
  13. Attempting to find solutions from simple to...

    Attempting to find solutions from simple to advanced problems for which you have already found solutions in PHP and trying to replicate them using RoR would be one of my suggestions.

    I found that...
  14. Replies
    1
    Views
    480

    Maybe a cron job which does it on a regular basis...

    Maybe a cron job which does it on a regular basis ?
  15. Try making also as full path.

    Try making

    also as full path.
  16. php regex

    You can start by learning more about regexp from places like (http://www.tutorialspoint.com/php/php_regular_expression.htm) and then move on to online regexp testing websites like...
  17. Replies
    2
    Views
    665

    WyCnet is right. Also you could learn a bit more...

    WyCnet is right. Also you could learn a bit more about js arrays here. http://www.w3schools.com/js/js_obj_array.asp
  18. http://googlewebmastercentral.blogspot.in/2010/06/...

    http://googlewebmastercentral.blogspot.in/2010/06/quality-links-to-your-site.html

    It says that
  19. Yes it is possible. If it's going to be a static...

    Yes it is possible. If it's going to be a static page without any dynamic elements why do you need it to be in PHP ?
  20. Replies
    2
    Views
    698

    You would be better off starting with some...

    You would be better off starting with some existing document management system scripts rather than a raw framework.
  21. Replies
    1
    Views
    605

    Is the above SQL statement getting executed...

    Is the above SQL statement getting executed correctly ?
  22. I assume you are a php developer. If so there...

    I assume you are a php developer. If so there are some sample scripts available at http://developer.authorize.net/downloads/samplecode/ .
  23. Replies
    1
    Views
    637

    You could download open source asp.net scripts...

    You could download open source asp.net scripts like http://www.nopcommerce.com/downloads.aspx , http://yetanotherforum.net/ etc and dissect it to your heart's content !
  24. It should replace only the code if(_hidediv)...

    It should replace only the code

    if(_hidediv)
    _hidediv();
    The rest should stay the same
  25. How about something like this if(_hidediv)...

    How about something like this


    if(_hidediv)
    {
    _hidediv();
    }
    else
    {
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles