Jump to content

kustov

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kustov's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. The client is interested in building a web phone book that is accessible from both PC and mobile. User will select a name and the system will create a low cost call between you and the contact name. the contact entry in DB will have name and phone number. Later stages will include contact importing from various sources like outlook and gmail. I have a medium level of PHP programming (PHP5, DB, classes, templates, frameworks). I have no experience with Wep. Is it real to do such project ? What should I know to do it ? How many hours it can take (approximately) ? Cost $ ? Is there open sources for this issue ? Thanks
  2. I think the solution is ignore_user_abort();
  3. There is a PHP – script on the server, which is worked out for a long time (over 10 min). The connection breaks up while performing the script and the absence of output to the client’s browser since the browser thinks that the server stops answering. How can I solve the problem that part of the PHP script on the server can not be performed because of connection interruption?
  4. I have a such array: $tree= array( 0=>array('id'=>1, 'parent'=>0), 1=>array('id'=>2, 'parent'=>0), 2=>array('id'=>3, 'parent'=>2), 3=>array('id'=>4, 'parent'=>3), 4=>array('id'=>5, 'parent'=>2), 5=>array('id'=>6, 'parent'=>0), 6=>array('id'=>7, 'parent'=>3), 7=>array('id'=>8, 'parent'=>4), 8=>array('id'=>9, 'parent'=>1), 9=>array('id'=>10, 'parent'=>0), 10=>array('id'=>11, 'parent'=>10), ); and need to get this output: -1 --9 -2 --3 ---4 ----8 --5 --7 -6 -10 --11 But I'm very bad in recursion, please help !
×
×
  • 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.